Browse Source

Log as debug for file overwrite

pull/2711/head
Ruud 11 years ago
parent
commit
279297b8fa
  1. 2
      couchpotato/core/plugins/base.py

2
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')

Loading…
Cancel
Save