mirror of https://github.com/apache/druid.git
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:
parent
1e96c85b38
commit
7e8671caa9
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue