logger#

Description#

Plugin to log traces on the standard Platypush logger

Configuration#

logger:
    # No configuration required

Actions#

Module reference#

class platypush.plugins.logger.LoggerPlugin(**kwargs)[source]#

Bases: Plugin

Plugin to log traces on the standard Platypush logger

__init__(**kwargs)#
debug(msg, *args, **kwargs)[source]#

logger.debug wrapper

error(msg, *args, **kwargs)[source]#

logger.error wrapper

exception(exception, *args, **kwargs)[source]#

logger.exception wrapper

info(msg, *args, **kwargs)[source]#

logger.info wrapper

trace(msg, *args, **kwargs)[source]#

logger.trace wrapper

warning(msg, *args, **kwargs)[source]#

logger.warning wrapper