From: Vsevolod Stakhov Date: Fri, 2 Jun 2017 09:30:16 +0000 (+0100) Subject: [Minor] Fix log message X-Git-Tag: 1.6.0~78 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=906d53b4325a57699d2dc5c21c88a89d1bdf1520;p=rspamd.git [Minor] Fix log message --- diff --git a/src/plugins/fuzzy_check.c b/src/plugins/fuzzy_check.c index 453923633..f5471eee4 100644 --- a/src/plugins/fuzzy_check.c +++ b/src/plugins/fuzzy_check.c @@ -2319,11 +2319,12 @@ fuzzy_generate_commands (struct rspamd_task *task, struct fuzzy_rule *rule, /* Check length of part */ fac = fuzzy_module_ctx->text_multiplier * part->content->len; if ((double)fuzzy_module_ctx->min_bytes > fac) { - msg_info_task ("<%s>, part is shorter than %d bytes (%.0f * %.2f bytes), " + msg_info_task ("<%s>, part is shorter than %d bytes: %.0f " + "(%d * %.2f bytes), " "skip fuzzy check", task->message_id, fuzzy_module_ctx->min_bytes, fac, - fuzzy_module_ctx->text_multiplier, - part->content->len); + part->content->len, + fuzzy_module_ctx->text_multiplier); continue; }