class documentation

Debug class.

Method __init__ Displays a colorful debug message and the current call hierarchy.
Class Variable Blacklist Undocumented
Class Variable EnableBlacklist Undocumented
Class Variable EnableInit Undocumented
Class Variable EnableRefresh Undocumented
def __init__(self, obj: object, text: str, color: Style | None = None, force: bool = False, success: bool = False, warning: bool = False, error: bool = False, init: bool = False, refresh: bool = False):

Displays a colorful debug message and the current call hierarchy.

Parameters
obj:objectClass instance
text:strDebug message
color:Style | NoneColor (may be None)
force:boolEnable to override whitelist
success:boolEnable to set color=SuccessColor
warning:boolEnable to set color=WarningColor and force=True
error:boolEnable to set color=ErrorColor and force=True
init:boolEnable to mark as init message (filtering through EnableInit)
refresh:boolEnable to mark as refresh message (filtering through EnableRefresh)
Blacklist: list[str] =

Undocumented

EnableBlacklist: bool =

Undocumented

EnableInit: bool =

Undocumented

EnableRefresh: bool =

Undocumented