class documentation

class Debug:

View In Hierarchy

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, text, color=None, force=False, success=False, warning=False, error=False, init=False, refresh=False):
Displays a colorful debug message and the current call hierarchy.
Parameters
obj:objectClass instance
text:strDebug message
color:Optional[Style]Color (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