]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
email-json: improve log message
authorEric Leblond <eric@regit.org>
Thu, 7 May 2015 12:52:12 +0000 (14:52 +0200)
committerEric Leblond <eric@regit.org>
Tue, 6 Oct 2015 21:30:45 +0000 (23:30 +0200)
src/output-json-email-common.c

index 12e91f3ef39687a7abb65a32c4f9015e443968c7..7af0b70bbd04915cb7908a3cb45694e1f4291d8d 100644 (file)
@@ -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;
                     }
                 }