Closed thequicksort closed 4 years ago
Writing a longer description, but here's a rough idea of how I'm thinking logging could work.
Any submodule/file that needs logging can just do
"""" =============== arbitrary_module.py =============== """" from poretitioner.logger import getLogger def fancy_signal_processing(): # .... log = getLogger() log.debug("Debug") log.error("This is an error")
Writing a longer description, but here's a rough idea of how I'm thinking logging could work.
Any submodule/file that needs logging can just do