Fix for regression with missing verbose log entries (#177).
the build was successful Details

This commit is contained in:
Dan Helfman 2019-05-16 10:50:19 -07:00
parent 1cf0e1bd84
commit 9417359da3
3 changed files with 3 additions and 3 deletions

3
NEWS
View File

@ -1,6 +1,7 @@
1.3.5.dev0
1.3.5
* #153: Support for various Borg directory environment variables (BORG_CONFIG_DIR, BORG_CACHE_DIR,
etc.) via options in borgmatic's storage configuration.
* #177: Fix for regression with missing verbose log entries.
1.3.4
* Part of #125: Color borgmatic (but not Borg) output when using an interactive terminal.

View File

@ -86,7 +86,6 @@ def get_logger(name=None):
'''
logging.setLoggerClass(Borgmatic_logger)
logger = logging.getLogger(name)
logger.propagate = False
return logger

View File

@ -1,6 +1,6 @@
from setuptools import find_packages, setup
VERSION = '1.3.5.dev0'
VERSION = '1.3.5'
setup(