diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-08-31 18:22:10 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-08-31 18:22:10 +0100 |
commit | e3395816d88a79a7fa22ae2e1b364f5cfa099777 (patch) | |
tree | fcd673eb788b4505122793de49c3bd90eb81007e /src/plugins/chartable.c | |
parent | ebc3b5ba0b6eadfb966f1f44c2d78beea9b82dbb (diff) | |
download | rspamd-e3395816d88a79a7fa22ae2e1b364f5cfa099777.tar.gz rspamd-e3395816d88a79a7fa22ae2e1b364f5cfa099777.zip |
Update other C module for the new logger.
Diffstat (limited to 'src/plugins/chartable.c')
-rw-r--r-- | src/plugins/chartable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/chartable.c b/src/plugins/chartable.c index 2cd12b68d..9c7362b35 100644 --- a/src/plugins/chartable.c +++ b/src/plugins/chartable.c @@ -95,7 +95,7 @@ chartable_module_config (struct rspamd_config *cfg) if ((value = rspamd_config_get_module_opt (cfg, "chartable", "threshold")) != NULL) { if (!ucl_obj_todouble_safe (value, &chartable_module_ctx->threshold)) { - msg_warn ("invalid numeric value"); + msg_warn_config ("invalid numeric value"); chartable_module_ctx->threshold = DEFAULT_THRESHOLD; } } |