log the error with error level instead of debug

This commit is contained in:
Elliott Balsley 2026-01-24 19:04:06 -08:00
parent a9e50238eb
commit 595be6dcd4
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ class ScriptModule(PythonModuleMixin, JobsMixin, ManagedFile):
module = self.get_module()
except Exception as e:
self.error = e
logger.debug(f"Failed to load script: {self.python_name} error: {e}")
logger.error(f"Failed to load script: {self.python_name} error: {e}")
module = None
scripts = {}