From 7dd42eaf4dca5ae665ed6bce8ec4f5a7675d227a Mon Sep 17 00:00:00 2001 From: brent s Date: Sun, 2 Jun 2019 19:17:57 -0400 Subject: [PATCH] another logging bug --- storage/backups/borg/backup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storage/backups/borg/backup.py b/storage/backups/borg/backup.py index 4faf4ec..4642285 100755 --- a/storage/backups/borg/backup.py +++ b/storage/backups/borg/backup.py @@ -273,7 +273,7 @@ class Backup(object): import importlib _orig_path = sys.path for plugin in repo['plugins']: - logging.debug('Initializing plugin: {0}'.format(plugin)) + self.logging.debug('Initializing plugin: {0}'.format(plugin)) if repo['plugins'][plugin]['path']: sys.path.insert(1, os.path.abspath(os.path.expanduser(repo['plugins'][plugin]['path']))) optools_tmpmod = importlib.import_module(plugin, package = None) @@ -284,7 +284,7 @@ class Backup(object): del(sys.modules[plugin]) del(optools_tmpmod) sys.path = _orig_path - logging.debug('Finished plugin: {0}'.format(plugin)) + self.logging.debug('Finished plugin: {0}'.format(plugin)) # This is where we actually do the thing. _cmd = [self.borgbin, '--log-json',