dlab_core.domain.logger¶
Module Contents¶
-
exception
LoggerException[source]¶ Bases:
dlab_core.domain.exceptions.DLabExceptionBase class for Logger execution exceptions.
-
class
AbstractLogger[source]¶ Base class for Loggers.
-
debug(self, msg)[source]¶ Delegate an debug call to the underlying logger.
Parameters: msg (str) – Logging message.
-
info(self, msg)[source]¶ Delegate an info call to the underlying logger.
Parameters: msg (str) – Logging message.
-