From 6e0668125c16b729106ee5b5e4bda69135c5cf7d Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Thu, 7 May 2015 14:52:12 +0200 Subject: [PATCH] email-json: improve log message --- src/output-json-email-common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/output-json-email-common.c b/src/output-json-email-common.c index 12e91f3ef3..7af0b70bbd 100644 --- a/src/output-json-email-common.c +++ b/src/output-json-email-common.c @@ -449,11 +449,11 @@ void OutputEmailInitConf(ConfNode *conf, OutputJsonEmailCtx *email_ctx) TAILQ_FOREACH(field, &md5_conf->head, next) { if (field != NULL) { if (strcmp("body", field->val) == 0) { - SCLogInfo("Going to log email body md5"); + SCLogInfo("Going to log the md5 sum of email body"); email_ctx->flags |= LOG_EMAIL_BODY_MD5; } if (strcmp("subject", field->val) == 0) { - SCLogInfo("Going to log email subject md5"); + SCLogInfo("Going to log the md5 sum of email subject"); email_ctx->flags |= LOG_EMAIL_SUBJECT_MD5; } } -- 2.47.2