Skip to content

Commit 2572862

Browse files
committed
Make "post_dry_run failed" a warning
having it as error log seems to trip up people too much at the moment
1 parent afebacc commit 2572862

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎openeogeotrellis/backend.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,7 @@ def post_dry_run(
13291329
logger.info(f"post_dry_run: {post_dry_run_data=}")
13301330
return post_dry_run_data
13311331
except Exception as e:
1332-
logger.error(f"post_dry_run failed: {e}", exc_info=True)
1332+
logger.warning(f"post_dry_run failed: {e}", exc_info=True)
13331333

13341334

13351335
class GpsProcessing(ConcreteProcessing):

0 commit comments

Comments
 (0)