
|
If you were logged in you would be able to see more operations.
|
|
Lines like this one below will always evaluate toString() regardless of the logging level set in the logger.
replace: logger.trace("Incoming query model:\n{}", tupleExpr.toString());
with: logger.trace("Incoming query model:\n{}", tupleExpr);
Let slf4j call the toString() method on the parameters *iff* the message is to be logged. This message was found in NativeStoreConnection#evaluateInternal, but there might be more.
|
|
Fixed in both the native store and the memory store.
|
|