GroupByQueryConfig: Skip unnecessary toString. (#17396)

Calling toString on newConfig is unnecessary, because it will be done
automatically by the logger. This saves some effort under log levels
higher than DEBUG.
This commit is contained in:
Gian Merlino 2024-10-23 07:27:22 -07:00 committed by GitHub
parent 1e96c85b38
commit 7e8671caa9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ public class GroupByQueryConfig
isMultiValueUnnestingEnabled()
);
logger.debug("Override config for GroupBy query %s - %s", query.getId(), newConfig.toString());
logger.debug("Override config for GroupBy query %s - %s", query.getId(), newConfig);
return newConfig;
}