diff options
Diffstat (limited to 'src/plugins/fuzzy_check.c')
-rw-r--r-- | src/plugins/fuzzy_check.c | 7 |
1 files changed, 4 insertions, 3 deletions
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; } |