Files
lief-project-LIEF/api/python/lief/logging.pyi
T

28 lines
925 B
Python

from typing import Any, ClassVar
import lief.logging # type: ignore
class LOGGING_LEVEL:
CRITICAL: ClassVar[LOGGING_LEVEL] = ...
DEBUG: ClassVar[LOGGING_LEVEL] = ...
ERROR: ClassVar[LOGGING_LEVEL] = ...
INFO: ClassVar[LOGGING_LEVEL] = ...
TRACE: ClassVar[LOGGING_LEVEL] = ...
WARNING: ClassVar[LOGGING_LEVEL] = ...
__name__: Any
def __init__(self, *args, **kwargs) -> None: ...
def __ge__(self, other) -> bool: ...
def __gt__(self, other) -> bool: ...
def __hash__(self) -> int: ...
def __index__(self) -> Any: ...
def __int__(self) -> int: ...
def __le__(self, other) -> bool: ...
def __lt__(self, other) -> bool: ...
def disable() -> None: ...
def enable() -> None: ...
def log(level: lief.logging.LOGGING_LEVEL, msg: str) -> None: ...
def reset() -> None: ...
def set_level(level: lief.logging.LOGGING_LEVEL) -> None: ...
def set_path(path: str) -> None: ...