This is an automated email from the ASF dual-hosted git repository.
baunsgaard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new 1519123fd5 [MINOR] Fix logging in spoof compiler
1519123fd5 is described below
commit 1519123fd5152a477ca28bc3d1061f4282068992
Author: Sebastian Baunsgaard <[email protected]>
AuthorDate: Fri Jan 5 12:31:50 2024 +0100
[MINOR] Fix logging in spoof compiler
---
src/main/java/org/apache/sysds/hops/codegen/SpoofCompiler.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/sysds/hops/codegen/SpoofCompiler.java
b/src/main/java/org/apache/sysds/hops/codegen/SpoofCompiler.java
index 55d75b092a..aca07fb413 100644
--- a/src/main/java/org/apache/sysds/hops/codegen/SpoofCompiler.java
+++ b/src/main/java/org/apache/sysds/hops/codegen/SpoofCompiler.java
@@ -539,13 +539,13 @@ public class SpoofCompiler {
}
//explain debug output cplans or
generated source code
- if( LOG.isTraceEnabled() ||
DMLScript.EXPLAIN.isHopsType(recompile) ) {
+ if( LOG.isInfoEnabled() ||
DMLScript.EXPLAIN.isHopsType(recompile) ) {
LOG.info("Codegen EXPLAIN
(generated cplan for HopID: " + cplan.getKey() +
", line
"+tmp.getValue().getBeginLine() + ", hash="+tmp.getValue().hashCode()+"):");
LOG.info(tmp.getValue().getClassname()
+
Explain.explainCPlan(cplan.getValue().getValue()));
}
- if( LOG.isTraceEnabled() ||
DMLScript.EXPLAIN.isRuntimeType(recompile) ) {
+ if( LOG.isInfoEnabled() ||
DMLScript.EXPLAIN.isRuntimeType(recompile) ) {
LOG.info("JAVA Codegen EXPLAIN
(generated code for HopID: " + cplan.getKey() +
", line
"+tmp.getValue().getBeginLine() + ", hash="+tmp.getValue().hashCode()+"):");
LOG.info(CodegenUtils.printWithLineNumber(src));