From: Eric Leblond Date: Thu, 7 May 2015 12:52:12 +0000 (+0200) Subject: email-json: improve log message X-Git-Tag: suricata-3.0RC1~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e0668125c16b729106ee5b5e4bda69135c5cf7d;p=thirdparty%2Fsuricata.git email-json: improve log message --- 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; } }