Skip to content

Commit 1479d7c

Browse files
committed
Code tidy
Signed-off-by: Dave Streeter <[email protected]>
1 parent 6a31191 commit 1479d7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

system/jlib/jlog.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2412,7 +2412,7 @@ LogFormatChangedDetails hasLogFormatChanged(const Owned<IPropertyTree> &logConfi
24122412
return logFormatChanged;
24132413
}
24142414

2415-
bool configureHandlers(bool rejectOnTheFlyChanges)
2415+
bool configureHandlers(bool rejectOnTheFlyLogFormatChanges)
24162416
{
24172417
Owned<IPropertyTree> logConfig = getComponentConfigSP()->getPropTree("logging");
24182418
if (logConfig)
@@ -2423,11 +2423,11 @@ bool configureHandlers(bool rejectOnTheFlyChanges)
24232423
return false;
24242424
}
24252425

2426-
if (rejectOnTheFlyChanges)
2426+
if (rejectOnTheFlyLogFormatChanges)
24272427
{
24282428
LogFormatChangedDetails logFormatChanged = hasLogFormatChanged(logConfig);
24292429
if (logFormatChanged.formatChangeDetected)
2430-
UWARNLOG("JLog: Ignoring log format configuration change on the fly is not supported in a containerized environment");
2430+
UWARNLOG("JLog: Ignoring log format configuration change on the fly, as it is not supported in a containerized environment");
24312431
}
24322432

24332433
if (logConfig->hasProp(logFieldsAtt))

0 commit comments

Comments
 (0)