diff --git a/NEWS b/NEWS index 80d7f157..b5d87dce 100644 --- a/NEWS +++ b/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. diff --git a/borgmatic/logger.py b/borgmatic/logger.py index 8a8eda02..37e9472f 100644 --- a/borgmatic/logger.py +++ b/borgmatic/logger.py @@ -86,7 +86,6 @@ def get_logger(name=None): ''' logging.setLoggerClass(Borgmatic_logger) logger = logging.getLogger(name) - logger.propagate = False return logger diff --git a/setup.py b/setup.py index c3696230..cdeb11ad 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -VERSION = '1.3.5.dev0' +VERSION = '1.3.5' setup(