Skip to content

Commit 04b011e

Browse files
bestbeforetodayZorinAnton
authored andcommitted
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 <Mark.S.Lewis@outlook.com>
1 parent 6fb0bda commit 04b011e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)