From 99bc8526da530d5ac72feef24859c640bcee4088 Mon Sep 17 00:00:00 2001 From: Tim Klemm Date: Thu, 2 Mar 2023 11:41:07 -0500 Subject: [PATCH] HPCC-28817 Remove unnecessary TxSummary warning log entry Signed-off-by: Tim Klemm --- esp/platform/txsummary.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/esp/platform/txsummary.cpp b/esp/platform/txsummary.cpp index 2b14dfd63f4..4c0c6e905a7 100755 --- a/esp/platform/txsummary.cpp +++ b/esp/platform/txsummary.cpp @@ -66,12 +66,6 @@ CTxSummary::TxEntryBase::TxEntryBase(const char* _key, const LogLevel _logLevel, else name = fullname.str(); } - - // The expectation for JSON-formatted output is for numeric values to be presented as numbers. - // Appending suffix text to unquoted JSON numbers invalidates the data, which suggests suffizes - // should be embedded in names. Record when a separate suffix will be ignored. - if (!suffix.isEmpty()) - IWARNLOG("TxSummary entry with name '%s' and suffix '%s'; suffix is ignored", _key, _suffix); } bool CTxSummary::TxEntryBase::shouldSerialize(const LogLevel requestedLevel, const unsigned int requestedGroup)