# HG changeset patch # User Drew Perttula # Date 1433746448 0 # Node ID 3c78608a216a1a51104b133e617867202bfdae7a # Parent d5e99fee786d8498beff4ef91745356c0c698421 don't break all non-root log channels Ignore-this: 2908404aef5c5040c84aa577c201ef0b diff -r d5e99fee786d -r 3c78608a216a bin/run_local.py --- a/bin/run_local.py Mon Jun 08 06:53:12 2015 +0000 +++ b/bin/run_local.py Mon Jun 08 06:54:08 2015 +0000 @@ -24,7 +24,9 @@ pass progName = sys.argv[0].split('/')[-1] -log = logging.getLogger(progName) +log = logging.getLogger() # this has to get the root logger +log.name = progName # but we can rename it for clarity + class CSH(coloredlogs.ColoredStreamHandler): def render_timestamp(self, created):