From 279297b8fa9a42ddea5f9c57efe84cd7ec73dd26 Mon Sep 17 00:00:00 2001 From: Ruud Date: Mon, 13 Jan 2014 22:30:41 +0100 Subject: [PATCH] Log as debug for file overwrite --- couchpotato/core/plugins/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/base.py b/couchpotato/core/plugins/base.py index 86cd9777..588a2030 100644 --- a/couchpotato/core/plugins/base.py +++ b/couchpotato/core/plugins/base.py @@ -98,7 +98,7 @@ class Plugin(object): self.makeDir(os.path.dirname(path)) if os.path.exists(path): - log.info('%s already exists, overwriting file with new version', path) + log.debug('%s already exists, overwriting file with new version', path) try: f = open(path, 'w+' if not binary else 'w+b')