Skip to content

Commit e1e2065

Browse files
authored
Replace logging.warning to logging.info (#725)
1 parent cba9474 commit e1e2065

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

doc/source/conf.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,6 @@ def setup(app):
146146
app.registry.source_suffix.pop(".ipynb", None)
147147

148148

149-
# To avoid warning in doc about standard error
150-
suppress_warnings = ["mystnb.stderr"]
151-
152149
# -- Options for HTML output -------------------------------------------------
153150

154151
# The theme to use for HTML and HTML Help pages. See the documentation for

xdem/coreg/blockwise.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def fit(
147147
ref=reference_elev, multiproc_config=self.mp_config, silent=True
148148
)
149149

150-
logging.warning(f"No reprojected DEM returned, but saved at {self.output_path_reproject}")
150+
logging.info(f"No reprojected DEM returned, but saved at {self.output_path_reproject}")
151151

152152
self.meta["inputs"] = self.procstep.meta["inputs"] # type: ignore
153153

0 commit comments

Comments
 (0)