minitrino.core.logging.levels module#

Log levels for the Minitrino logger.

class minitrino.core.logging.levels.LogLevel(value)[source][source]#

Bases: Enum

Logging levels for Minitrino.

prefix[source]#

The prefix for the log level.

Type:

str

color[source]#

The color for the log level.

Type:

str

debug[source]#

Whether the log level is debug.

Type:

bool

INFO = ('[i]  ', 'cyan', False)[source]#
WARN = ('[w]  ', 'yellow', False)[source]#
ERROR = ('[e]  ', 'red', False)[source]#
DEBUG = ('[v]  ', 'magenta', True)[source]#