Source code for lighthouse.log

import logging

from .context import ContextFilter


[docs]def setup(program): """ Simple function that sets the program on the ContextFilter and returns the root logger. """ ContextFilter.program = program return logging.getLogger()