Fix for regression with missing verbose log entries (#177).
This commit is contained in:
parent
1cf0e1bd84
commit
9417359da3
3 changed files with 3 additions and 3 deletions
3
NEWS
3
NEWS
|
@ -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.
|
||||
|
|
|
@ -86,7 +86,6 @@ def get_logger(name=None):
|
|||
'''
|
||||
logging.setLoggerClass(Borgmatic_logger)
|
||||
logger = logging.getLogger(name)
|
||||
logger.propagate = False
|
||||
return logger
|
||||
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -1,6 +1,6 @@
|
|||
from setuptools import find_packages, setup
|
||||
|
||||
VERSION = '1.3.5.dev0'
|
||||
VERSION = '1.3.5'
|
||||
|
||||
|
||||
setup(
|
||||
|
|
Loading…
Reference in a new issue