]> source.dussan.org Git - rspamd.git/commitdiff
* Low log level for debug messages
authorVsevolod Stakhov <vsevolod@rambler-co.ru>
Thu, 13 May 2010 13:08:12 +0000 (17:08 +0400)
committerVsevolod Stakhov <vsevolod@rambler-co.ru>
Thu, 13 May 2010 13:08:12 +0000 (17:08 +0400)
src/main.c
src/symbols_cache.c

index 5672817e472124caf682cfc4ebafb29f2394f881..883d93ff5d4ffd01cad9bd36b500266ab4bf17d5 100644 (file)
@@ -284,7 +284,7 @@ reread_config (struct rspamd_main *rspamd)
                                filt = l->data;
                                if (filt->module) {
                                        (void)filt->module->module_reconfig_func (rspamd->cfg);
-                                       msg_info ("reconfig of %s", filt->module->name);
+                                       msg_debug ("reconfig of %s", filt->module->name);
                                }
                                l = g_list_next (l);
                        }
index 48eaf95ad204ee3e384e167b391a756d835ee67c..487efd15ecc2625f752c44b9fea41d603132644e 100644 (file)
@@ -241,7 +241,7 @@ register_symbol (struct symbols_cache **cache, const char *name, double weight,
        item->user_data = user_data;
        item->s->weight = weight;
        (*cache)->used_items++;
-       msg_info ("used items: %d, added symbol: %s", (*cache)->used_items, name);
+       msg_debug ("used items: %d, added symbol: %s", (*cache)->used_items, name);
        set_counter (item->s->symbol, 0);
 }