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.custom_logging

import logging

import six


[docs]class TraceLogger(object):
[docs] def __init__(self, name): self.name = name
[docs] def log(**kwargs): raise TypeError("Abstract Method")
# 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