From c769909dada7dd16c63180ce89ba3d160d371de3 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Sat, 28 Sep 2019 10:12:49 +0200 Subject: [PATCH] eve/stats: update warning for new default behavior --- src/output-json-stats.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/output-json-stats.c b/src/output-json-stats.c index f498839da9..f890f22e3b 100644 --- a/src/output-json-stats.c +++ b/src/output-json-stats.c @@ -401,8 +401,7 @@ static OutputInitResult OutputStatsLogInit(ConfNode *conf) strcmp(stats_decoder_events_prefix, "decoder") == 0) { SCLogWarning(SC_WARN_EVE_MISSING_EVENTS, "json stats will not display " "all decoder events correctly. See #2225. Set a prefix in " - "stats.decoder-events-prefix. In 5.0 the prefix will default " - "to 'decoder.event'."); + "stats.decoder-events-prefix."); } if (SCConfLogOpenGeneric(conf, file_ctx, DEFAULT_LOG_FILENAME, 1) < 0) { @@ -479,8 +478,7 @@ static OutputInitResult OutputStatsLogInitSub(ConfNode *conf, OutputCtx *parent_ strcmp(stats_decoder_events_prefix, "decoder") == 0) { SCLogWarning(SC_WARN_EVE_MISSING_EVENTS, "eve.stats will not display " "all decoder events correctly. See #2225. Set a prefix in " - "stats.decoder-events-prefix. In 5.0 the prefix will default " - "to 'decoder.event'."); + "stats.decoder-events-prefix."); } stats_ctx->flags = JSON_STATS_TOTALS;