Skip to content

Commit 5192e9f

Browse files
chore(isthmus): debug log missing Calcite mapping (#516)
There is an info level log in FunctionConverter for every every Calcite operator for which there is no direct Substrait mapping. This message makes the logs extremely busy and provides no value to end users. This change reclassifies the message as debug log. Signed-off-by: Mark S. Lewis <[email protected]>
1 parent c24395e commit 5192e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

isthmus/src/main/java/io/substrait/isthmus/expression/FunctionConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public FunctionConverter(
9090
for (String key : alm.keySet()) {
9191
Collection<Sig> sigs = calciteOperators.get(key);
9292
if (sigs.isEmpty()) {
93-
LOGGER.atInfo().log("No binding for function: {}", key);
93+
LOGGER.atDebug().log("No binding for function: {}", key);
9494
}
9595

9696
for (Sig sig : sigs) {

0 commit comments

Comments
 (0)