@@ -102,7 +102,7 @@ public CalciteLogicalIndexScan pushDownFilter(Filter filter) {
102102 if (LOG .isDebugEnabled ()) {
103103 LOG .debug ("Cannot pushdown the filter condition {}" , filter .getCondition (), e );
104104 } else {
105- LOG .warn ("Cannot pushdown the filter condition {}, " , filter .getCondition ());
105+ LOG .info ("Cannot pushdown the filter condition {}, " , filter .getCondition ());
106106 }
107107 }
108108 return null ;
@@ -159,7 +159,7 @@ public CalciteLogicalIndexScan pushDownAggregate(Aggregate aggregate) {
159159 if (LOG .isDebugEnabled ()) {
160160 LOG .debug ("Cannot pushdown the aggregate {}" , aggregate , e );
161161 } else {
162- LOG .warn ("Cannot pushdown the aggregate {}, " , aggregate );
162+ LOG .info ("Cannot pushdown the aggregate {}, " , aggregate );
163163 }
164164 }
165165 return null ;
@@ -175,7 +175,11 @@ public CalciteLogicalIndexScan pushDownLimit(Integer limit, Integer offset) {
175175 requestBuilder -> requestBuilder .pushDownLimit (limit , offset )));
176176 return newScan ;
177177 } catch (Exception e ) {
178- LOG .debug ("Cannot pushdown limit {} with offset {}. Exception: {}" , limit , offset , e );
178+ if (LOG .isDebugEnabled ()) {
179+ LOG .debug ("Cannot pushdown limit {} with offset {}" , limit , offset , e );
180+ } else {
181+ LOG .info ("Cannot pushdown limit {} with offset {}" , limit , offset );
182+ }
179183 }
180184 return null ;
181185 }
0 commit comments