log warning for script errors

This commit is contained in:
Elliott Balsley 2024-02-24 14:20:39 -08:00 committed by GitHub
parent edb7d24b45
commit 8582286051
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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