@@ -76,7 +76,7 @@ def __init__(self, fname_xls: str, check_file_paths=True, check_strat_layers=Tru
7676 if check_strat_layers :
7777 self .check_strat_layers ()
7878
79- logger .info (
79+ logger .debug (
8080 f"Start and end times: { self .time .time_start :%Y-%m-%d} - { self .time .time_end :%Y-%m-%d} "
8181 )
8282
@@ -94,7 +94,7 @@ def _get_root_path(self):
9494 flist = path .glob ("run_cryogrid.m" )
9595 if len (list (flist )) > 0 :
9696 self .root = path
97- logger .info (f"Found root path: { path } " )
97+ logger .debug (f"Found root path: { path } " )
9898 return self .root
9999 elif str (path ) == "/" :
100100 logger .warning (
@@ -319,7 +319,7 @@ def get_class(self, class_name: str) -> pd.DataFrame:
319319 except Exception :
320320 # only intended for debugging
321321 df = blocks
322- logger .warning (f"Could not concatenate blocks for class: { class_name } " )
322+ logger .debug (f"Could not concatenate blocks for class: { class_name } " )
323323
324324 return df
325325
@@ -441,7 +441,7 @@ def check_strat_layers(self):
441441 Run checks to ensure stratigraphy layers have physically plausible parameter values.
442442 """
443443 strat_layers = self .get_class ("STRAT_layers" )
444- logger .info ("Checking stratigraphy layers..." )
444+ logger .debug ("Checking stratigraphy layers..." )
445445 for layer in strat_layers :
446446 try :
447447 check_strat_layer_values (strat_layers [layer ].iloc [0 ])
@@ -456,7 +456,7 @@ def check_files_exist(self):
456456
457457 flist = set (self .fname .values ())
458458
459- logger .info ("Checking file locations..." )
459+ logger .debug ("Checking file locations..." )
460460 for f in flist :
461461 if not f .exists ():
462462 logger .warning (f"Cannot find file: { f } " )
0 commit comments