]> git.ipfire.org Git - ddns.git/commitdiff
Only print this messages for forced update in debugging mode.
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 22 Jun 2014 14:52:59 +0000 (14:52 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 22 Jun 2014 14:52:59 +0000 (14:52 +0000)
src/ddns/providers.py

index 90aa6af691048d8a142e29896caf8ebcbf077ea9..a023b1e0c9e7464090b296ed3fc35e0e8f66078f 100644 (file)
@@ -98,11 +98,11 @@ class DDNSProvider(object):
 
        def __call__(self, force=False):
                if force:
-                       logger.info(_("Updating %s forced") % self.hostname)
+                       logger.debug(_("Updating %s forced") % self.hostname)
 
                # Check if we actually need to update this host.
                elif self.is_uptodate(self.protocols):
-                       logger.info(_("%s is already up to date") % self.hostname)
+                       logger.debug(_("%s is already up to date") % self.hostname)
                        return
 
                # Execute the update.