Files

28 lines
850 B
Python

from typing import Any, ClassVar
import lief.logging # type: ignore
class LEVEL:
CRITICAL: ClassVar[LEVEL] = ...
DEBUG: ClassVar[LEVEL] = ...
ERROR: ClassVar[LEVEL] = ...
INFO: ClassVar[LEVEL] = ...
TRACE: ClassVar[LEVEL] = ...
WARN: ClassVar[LEVEL] = ...
__name__: str
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.LEVEL, msg: str) -> None: ...
def reset() -> None: ...
def set_level(level: lief.logging.LEVEL) -> None: ...
def set_path(path: str) -> None: ...