From 6f4b832263c93776bafa1ac016b70e42ac98fc9f Mon Sep 17 00:00:00 2001 From: henddher Date: Sun, 2 Oct 2022 11:28:52 -0500 Subject: [PATCH] Revert back to log_trace. --- evennia/utils/containers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/utils/containers.py b/evennia/utils/containers.py index eb319f8160..d3392b1a14 100644 --- a/evennia/utils/containers.py +++ b/evennia/utils/containers.py @@ -207,7 +207,7 @@ class GlobalScriptContainer(Container): typeclass = data.get("typeclass", settings.BASE_SCRIPT_TYPECLASS) self.typeclass_storage[key] = class_from_module(typeclass) except Exception: - logger.log_err( + logger.log_trace( f"GlobalScriptContainer could not start import global script {key}. " "It will be removed (skipped)." )