airobot.utils.ai_logger

class airobot.utils.ai_logger.Logger(log_level)[source]

Bases: object

A logger class.

Parameters:log_level (str) – the following modes are supported: debug, info, warn, error, critical.
critical(msg)[source]

Logging critical information

Parameters:msg (str) – message to log
debug(msg)[source]

Logging debug information

Parameters:msg (str) – message to log
error(msg)[source]

Logging error information

Parameters:msg (str) – message to log
info(msg)[source]

Logging info information

Parameters:msg (str) – message to log
set_level(log_level)[source]

Set logging level

Parameters:log_level (str) – the following modes are supported: debug, info, warn, error, critical
warning(msg)[source]

Logging warning information

Parameters:msg (str) – message to log