]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.runtime/src/org/simantics/scl/runtime/reporting/SCLReportingHandler.java
Expose CommandSession in SCL
[simantics/platform.git] / bundles / org.simantics.scl.runtime / src / org / simantics / scl / runtime / reporting / SCLReportingHandler.java
old mode 100755 (executable)
new mode 100644 (file)
index 91e71d6..4ea5fe6
@@ -58,7 +58,7 @@ public interface SCLReportingHandler {
 
         @Override
         public void printError(String error) {
-            System.err.println(error);
+            LOGGER.error(error);
         }
     };
     
@@ -70,7 +70,7 @@ public interface SCLReportingHandler {
 
         @Override
         public void printError(String error) {
-            System.err.println(error);
+            LOGGER.error(error);
         }
 
         @Override