From: Vsevolod Stakhov Date: Wed, 25 Mar 2009 10:14:17 +0000 (+0300) Subject: * Fix log line X-Git-Tag: 0.2.7~228 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=89af4cfb3a5c91890769a095a6c9bf2638de88ab;p=thirdparty%2Frspamd.git * Fix log line --- diff --git a/src/protocol.c b/src/protocol.c index 3aeb46debd..60b3b1bf17 100644 --- a/src/protocol.c +++ b/src/protocol.c @@ -486,7 +486,7 @@ show_metric_result (gpointer metric_name, gpointer metric_value, void *user_data if (task->cmd == CMD_SYMBOLS && metric_value != NULL) { show_metric_symbols (metric_res, cd); } - cd->log_offset += snprintf (cd->log_buf + cd->log_offset, cd->log_size - cd->log_offset, "] ), len: %ld, time: %s", + cd->log_offset += snprintf (cd->log_buf + cd->log_offset, cd->log_size - cd->log_offset, "]), len: %ld, time: %sms", (long int)task->msg->len, calculate_check_time (&task->ts, task->cfg->clock_res)); }