This is an automated email from the ASF dual-hosted git repository.

kishoreg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new f2eb2fd  log query exception by using correct slf4j overload (#7948)
f2eb2fd is described below

commit f2eb2fd824b6576f21a67b13ff6c6e654b7968d0
Author: Richard Startin <rich...@startree.ai>
AuthorDate: Wed Dec 22 17:53:18 2021 +0000

    log query exception by using correct slf4j overload (#7948)
---
 .../org/apache/pinot/core/operator/combine/BaseCombineOperator.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/pinot-core/src/main/java/org/apache/pinot/core/operator/combine/BaseCombineOperator.java
 
b/pinot-core/src/main/java/org/apache/pinot/core/operator/combine/BaseCombineOperator.java
index 17ffb3b..2a3ac72 100644
--- 
a/pinot-core/src/main/java/org/apache/pinot/core/operator/combine/BaseCombineOperator.java
+++ 
b/pinot-core/src/main/java/org/apache/pinot/core/operator/combine/BaseCombineOperator.java
@@ -102,7 +102,7 @@ public abstract class BaseCombineOperator extends 
BaseOperator<IntermediateResul
             // Early-terminated by interruption (canceled by the main thread)
           } catch (Exception e) {
             // Caught exception, skip processing the remaining segments
-            LOGGER.error("Caught exception while processing query: {}", 
_queryContext, e);
+            LOGGER.error("Caught exception while processing query: " + 
_queryContext, e);
             onException(e);
           } finally {
             onFinish();

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to