Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
twisted /
logger /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
__init__.py
3.29
KB
-rw-r--r--
_buffer.py
1.49
KB
-rw-r--r--
_capture.py
624
B
-rw-r--r--
_file.py
2.28
KB
-rw-r--r--
_filter.py
6.73
KB
-rw-r--r--
_flatten.py
4.88
KB
-rw-r--r--
_format.py
11.6
KB
-rw-r--r--
_global.py
8.44
KB
-rw-r--r--
_interfaces.py
2.29
KB
-rw-r--r--
_io.py
4.46
KB
-rw-r--r--
_json.py
8.24
KB
-rw-r--r--
_legacy.py
5.12
KB
-rw-r--r--
_levels.py
2.92
KB
-rw-r--r--
_logger.py
9.75
KB
-rw-r--r--
_observer.py
3.17
KB
-rw-r--r--
_stdlib.py
4.44
KB
-rw-r--r--
_util.py
1.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _util.py
# -*- test-case-name: twisted.logger.test.test_util -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Logging utilities. """ from typing import List from ._interfaces import LogTrace from ._logger import Logger def formatTrace(trace: LogTrace) -> str: """ Format a trace (that is, the contents of the C{log_trace} key of a log event) as a visual indication of the message's propagation through various observers. @param trace: the contents of the C{log_trace} key from an event. @return: A multi-line string with indentation and arrows indicating the flow of the message through various observers. """ def formatWithName(obj: object) -> str: if hasattr(obj, "name"): return f"{obj} ({obj.name})" # type: ignore[attr-defined] else: return f"{obj}" result = [] lineage: List[Logger] = [] for parent, child in trace: if not lineage or lineage[-1] is not parent: if parent in lineage: while lineage[-1] is not parent: lineage.pop() else: if not lineage: result.append(f"{formatWithName(parent)}\n") lineage.append(parent) result.append(" " * len(lineage)) result.append(f"-> {formatWithName(child)}\n") return "".join(result)
Close