Adjustments to firewall rules generation/initializations for running multiple benchmarks
[iot2.git] / iotjava / iotruntime / master / CRuntimeInstrumenterMaster.java
index 2662fc178f86a7e74894d8a39c2bd04ade93be0e..16052adc0041c0bfe8ea5ab9ea228fd18b16f20e 100644 (file)
@@ -65,13 +65,13 @@ public final class CRuntimeInstrumenterMaster {
                        prop.load(fis);
                        fis.close();
                } catch (IOException ex) {
-                       System.out.println("CRuntimeInstrumenterMaster: Error reading config file: " + strCfgFileName + 
-                               ". Please make sure it contains field information!");
+                       RuntimeOutput.print("CRuntimeInstrumenterMaster: Error reading config file: " + strCfgFileName + 
+                               ". Please make sure it contains field information!", bVerbose);
                        ex.printStackTrace();
                }
-               System.out.println("CRuntimeInstrumenterMaster: Reading " + strCfgField +
+               RuntimeOutput.print("CRuntimeInstrumenterMaster: Reading " + strCfgField +
                        " from config file: " + strCfgFileName + " with value: " + 
-                       prop.getProperty(strCfgField, null));
+                       prop.getProperty(strCfgField, null), bVerbose);
                // NULL is returned if the property isn't found
                return prop.getProperty(strCfgField, null);
        }