]> git.ipfire.org Git - oddments/collecty.git/commitdiff
Do not log supported locales
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 20 Sep 2020 13:58:49 +0000 (13:58 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 20 Sep 2020 13:58:49 +0000 (13:58 +0000)
This does not seem to be very helpful to me

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/collecty/daemon.py

index da3fdb071c8e2ba487d73a347a65d5050ac753c6..05833d95be73bb0b94e2a915a74fde484c160f80 100644 (file)
@@ -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.