sebwrede commented on a change in pull request #1051:
URL: https://github.com/apache/systemds/pull/1051#discussion_r486369426



##########
File path: src/main/java/org/apache/sysds/runtime/instructions/Instruction.java
##########
@@ -38,7 +41,21 @@
                FEDERATED
        }
        
-       private static final Log LOG = 
LogFactory.getLog(Instruction.class.getName());
+       protected static final Log LOG = 
LogFactory.getLog(Instruction.class.getName());
+       protected final Operator _optr;
+
+       protected Instruction(Operator _optr){
+               this._optr = _optr;
+       }
+
+       // local flag for debug output
+       private static final boolean LTRACE = false;
+       static {
+               // for internal debugging only
+               if( LTRACE ) {
+                       
Logger.getLogger("org.apache.sysds.runtime.instructions.Instruction").setLevel(Level.TRACE);

Review comment:
       I am not using it, so I just removed it. 




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to