From: Michael Tremer Date: Sun, 22 Jun 2014 14:52:59 +0000 (+0000) Subject: Only print this messages for forced update in debugging mode. X-Git-Tag: 001~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;ds=inline;h=c3888f15b65d957fa3a88e908309efcf6fb13b7f;p=oddments%2Fddns.git Only print this messages for forced update in debugging mode. --- diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 90aa6af..a023b1e 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -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.