Elevate Recorder "Error executing ..." from warning to error (#142816)

This commit is contained in:
ildar170975 2025-04-24 13:36:39 +03:00 committed by GitHub
parent 0764cf1165
commit f1975d9dbf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -650,7 +650,7 @@ def _wrap_retryable_database_job_func_or_meth[**_P](
# Failed with retryable error
return False
_LOGGER.warning("Error executing %s: %s", description, err)
_LOGGER.error("Error executing %s: %s", description, err)
# Failed with permanent error
return True