Warning
This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for galaxy.util.logging
import logging
import six
# Add custom "TRACE" log level for ludicrous verbosity.
LOGLV_TRACE = 5
logging.addLevelName(LOGLV_TRACE, "TRACE")
[docs]def trace(self, message, *args, **kws):
if self.isEnabledFor(LOGLV_TRACE):
self._log(LOGLV_TRACE, message, args, **kws)
[docs]def get_logger(name=None):
logger = logging.getLogger(name)
logger.trace = six.create_bound_method(trace, logger)
return logger