Details
-
Type:
RFC
-
Status: Implemented
-
Resolution: Done
-
Component/s: DM
-
Labels:None
Description
Current guidance for naming a loggerCurrent guidance for naming a logger is the following:
Logger names should generally start with the fully qualified name of the module/file containing the logger, without the leading lsst.. Some example logger names are afw.image.MaskedImage and meas.algorithms.starSelector.
Specifically we recommend that logger names do not include a fixed prefix. This goes against the advice for Python logging or using:
logging.getLogger(__name__)
|
which would include the prefix.
Dropping the prefix has the advantage that the name is 5 characters shorter and so takes up less space when the log message is emitted and is less typing if manually constructed or an override is given on the command line.
Dropping the prefix does have a number of disadvantages though:
- There is a remote possibility of namespace clashes with other packages.
- It's impossible to set the logger level globally for all our packages whilst leaving third party loggers untouched.
In particular if anyone has done --log-level=DEBUG with pipetask they will see lots of fun output from matplotlib (and that message from conda changing standard output always turns up as INFO). In particular we could change how pipetask works such that it implicitly converts a general log-level request to setting the lsst. logger and not the root logger (But that can clearly not happen immediately).
I propose we change our default recommendation to include the prefix in all new loggers (and over time switch over all loggers to using the recommended Python scheme where appropriate) including those constructed for Tasks.
I'm in favor of this RFC. Our packages typically have a lot of logging information at the INFO level, so being able to set that for all pipelines packages, but not have to set it for the root logger seems like a big win even if the log lines are slightly longer.