Skip to content
Snippets Groups Projects
Commit 145b3d7d authored by leufen1's avatar leufen1
Browse files

load lazy now just drops a debug message, /close #290

parent a72c04dc
No related branches found
No related tags found
7 merge requests!319add all changes of dev into release v1.4.0 branch,!318Resolve "release v1.4.0",!283Merge latest develop into falcos issue,!279include Develop,!278Felix issue295 transformation parameters in data handler,!272Resolve "fix separation of scales data handler",!259Draft: Resolve "WRF-Datahandler should inherit from SingleStationDatahandler"
Pipeline #63365 passed
......@@ -252,9 +252,9 @@ class DataHandlerSingleStation(AbstractDataHandler):
with open(filename, "rb") as pickle_file:
lazy_data = dill.load(pickle_file)
self._extract_lazy(lazy_data)
logging.info(f"{self.station}: used lazy data")
logging.debug(f"{self.station[0]}: used lazy data")
except FileNotFoundError:
logging.info(f"{self.station}: could not use lazy data")
logging.debug(f"{self.station[0]}: could not use lazy data")
self.make_input_target()
def _extract_lazy(self, lazy_data):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment