Index: wflow-py/wflow/wf_netcdfio.py =================================================================== diff -u -r61466915f9776e7601562945a203eff94c08e33e -rcc5a835fd7cfa55daa9e3ca91ab7a39dec3f20b9 --- wflow-py/wflow/wf_netcdfio.py (.../wf_netcdfio.py) (revision 61466915f9776e7601562945a203eff94c08e33e) +++ wflow-py/wflow/wf_netcdfio.py (.../wf_netcdfio.py) (revision cc5a835fd7cfa55daa9e3ca91ab7a39dec3f20b9) @@ -437,7 +437,7 @@ logging.error(os.path.abspath(netcdffile) + " not found!") exit(ValueError) - logging.info("Reading input from netCDF file: " + netcdffile + ": " + str(self.dataset).replace('\n', ' ')) + logging.info("Reading input from netCDF file: " + netcdffile) self.alldat = {} a = pcr2numpy(cover(0.0), 0.0).flatten() # Determine steps to load in mem based on estimated memory usage @@ -585,7 +585,7 @@ logging.error(os.path.abspath(netcdffile) + " not found!") exit(ValueError) - logging.info("Reading state input from netCDF file: " + netcdffile + ": " + str(self.dataset).replace('\n', ' ')) + logging.info("Reading state input from netCDF file: " + netcdffile) self.alldat = {} a = pcr2numpy(cover(0.0), 0.0).flatten() # Determine steps to load in mem based on estimated memory usage @@ -679,7 +679,7 @@ (self.lonidx,) = logical_and(self.y >= x.min(), self.y < y.max()).nonzero() - logging.info("Reading static input from netCDF file: " + netcdffile + ": " + str(self.dataset).replace('\n', ' ')) + logging.info("Reading static input from netCDF file: " + netcdffile)