Skip to content

Commit 586afd4

Browse files
committed
Quiet unused(?), common, logging message to terminal
1 parent 8a870c3 commit 586afd4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/dscim/menu/main_recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ def global_consumption(self):
823823
# rff simulation means that GDP already exists out to 2300
824824
if 2300 in self.gdp.year:
825825

826-
self.logger.info("Global consumption found up to 2300.")
826+
self.logger.debug("Global consumption found up to 2300.")
827827
global_cons = self.gdp.sum("region").rename("global_consumption")
828828
else:
829829

src/dscim/menu/simple_storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def cut(self, xr_array, end_year=2099):
352352
if key in xr_array.coords
353353
}
354354

355-
self.logger.info(f"Subsetting on {valid_keys} keys.")
355+
self.logger.debug(f"Subsetting on {valid_keys} keys.")
356356

357357
xr_data = xr_array.sel(valid_keys).sel(
358358
year=slice(self.climate.pulse_year - 2, end_year)

0 commit comments

Comments
 (0)