aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main.c2
-rw-r--r--src/symbols_cache.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 5672817e4..883d93ff5 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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);
}
diff --git a/src/symbols_cache.c b/src/symbols_cache.c
index 48eaf95ad..487efd15e 100644
--- a/src/symbols_cache.c
+++ b/src/symbols_cache.c
@@ -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);
}