Skip to content

Commit

Permalink
do not disable existing loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
tschorr committed May 17, 2018
1 parent 7bf03ea commit 7ef7f6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Zope2/Startup/serve.py
Expand Up @@ -76,7 +76,8 @@ def setup_logging(config_uri, global_conf=None, # NOQA
here=os.path.dirname(config_file))
if global_conf:
full_global_conf.update(global_conf)
return fileConfig(config_file, full_global_conf)
return fileConfig(
config_file, full_global_conf, disable_existing_loggers=False)


class ServeCommand(object):
Expand Down

0 comments on commit 7ef7f6d

Please sign in to comment.