]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
[Minor] Reduce log info noise
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Sun, 5 Nov 2017 12:48:46 +0000 (12:48 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Sun, 5 Nov 2017 12:48:46 +0000 (12:48 +0000)
src/libserver/cfg_utils.c
src/libutil/map.c

index 00c7e0db443587887371f5c72bc11205eaf07b2b..b0533f7b8516a4a15a7268f5589aa66122a36d12 100644 (file)
@@ -1467,7 +1467,7 @@ rspamd_config_add_symbol (struct rspamd_config *cfg,
 
        if (sym_def != NULL) {
                if (sym_def->priority > priority) {
-                       msg_info_config ("symbol %s has been already registered with "
+                       msg_debug_config ("symbol %s has been already registered with "
                                        "priority %ud, do not override (new priority: %ud)",
                                        symbol,
                                        sym_def->priority,
@@ -1481,7 +1481,7 @@ rspamd_config_add_symbol (struct rspamd_config *cfg,
                        return FALSE;
                }
                else {
-                       msg_info_config ("symbol %s has been already registered with "
+                       msg_debug_config ("symbol %s has been already registered with "
                                        "priority %ud, override it with new priority: %ud, "
                                        "old score: %.2f, new score: %.2f",
                                        symbol,
index b5288bdf575c19611cef443f6611112ac824a275..006836d1adfb1f910ebec62ed0acfec96e76cb7b 100644 (file)
@@ -2133,7 +2133,7 @@ rspamd_map_add_from_ucl (struct rspamd_config *cfg,
        }
 
        rspamd_map_calculate_hash (map);
-       msg_info_map ("added map from ucl");
+       msg_debug_map ("added map from ucl");
 
        cfg->maps = g_list_prepend (cfg->maps, map);