From e9cd3e233281f9ec317155ac8f04b95ee50061d3 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 2 Oct 2011 22:01:45 +0200 Subject: [PATCH] Versionscheck logging --- couchpotato/core/plugins/updater/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/couchpotato/core/plugins/updater/main.py b/couchpotato/core/plugins/updater/main.py index 16185e1b..0bd4f207 100644 --- a/couchpotato/core/plugins/updater/main.py +++ b/couchpotato/core/plugins/updater/main.py @@ -68,6 +68,8 @@ class Updater(Plugin): local = self.repo.getHead() remote = branch.getHead() + log.info('Versions, local:%s, remote:%s' % (local.hash[:8], remote.hash[:8])) + if local.getDate() < remote.getDate(): if self.conf('automatic') and not self.update_failed: self.doUpdate()