Skip to content

Commit

Permalink
Merge d283e39 into 9ee7fdf
Browse files Browse the repository at this point in the history
  • Loading branch information
d-maurer committed Apr 28, 2021
2 parents 9ee7fdf + d283e39 commit e67f2a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGES.rst
Expand Up @@ -5,7 +5,9 @@
5.3.1 (unreleased)
==================

- Nothing changed yet.
- Do not disable existing loggers during logsupport initialization
(`#120 <https://github.com/zopefoundation/zope.testrunner/pull/120>`_).



5.3.0 (2021-03-17)
Expand Down
2 changes: 1 addition & 1 deletion src/zope/testrunner/logsupport.py
Expand Up @@ -39,7 +39,7 @@ def global_setup(self):

logini = os.path.abspath("log.ini")
if os.path.exists(logini):
logging.config.fileConfig(logini)
logging.config.fileConfig(logini, disable_existing_loggers=False)
else:
# If there's no log.ini, cause the logging package to be
# silent during testing.
Expand Down

0 comments on commit e67f2a0

Please sign in to comment.