From: Michael Tremer Date: Sun, 20 Sep 2020 13:58:49 +0000 (+0000) Subject: Do not log supported locales X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5adf1b190cddea8fb9a15927dd7a6f2423b285c8;p=collecty.git Do not log supported locales This does not seem to be very helpful to me Signed-off-by: Michael Tremer --- diff --git a/src/collecty/daemon.py b/src/collecty/daemon.py index da3fdb0..05833d9 100644 --- a/src/collecty/daemon.py +++ b/src/collecty/daemon.py @@ -28,7 +28,6 @@ import signal import time from . import bus -from . import locales from . import plugins from .constants import * @@ -72,8 +71,6 @@ class Collecty(object): log.debug(_("Collecty successfully initialized with %s plugins") \ % len(self.plugins)) - log.debug(_("Supported locales: %s") % ", ".join(locales.get_supported_locales())) - def add_plugin(self, plugin_class): # Try initialising a new plugin. If that fails, we will log the # error and try to go on.