From 9bdd1d0df60fc460c480cb1f13788ebed9308f3c Mon Sep 17 00:00:00 2001 From: Marcus Ottosson Date: Wed, 27 Jan 2021 18:26:01 +0000 Subject: [PATCH] Fix https://github.com/LumaPictures/pymel/issues/438 --- ragdoll/interactive.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ragdoll/interactive.py b/ragdoll/interactive.py index bc3e19f6..bd0552e1 100644 --- a/ragdoll/interactive.py +++ b/ragdoll/interactive.py @@ -234,11 +234,6 @@ def install_logger(): "ragdoll.%(funcName)s() - %(message)s" ) - # NOTE: This affects logging outside of Ragdoll as well, - # how else can we avoid all-caps "WARNING" level names? - logging.addLevelName(logging.INFO, "Info") - logging.addLevelName(logging.WARNING, "Warning") - # This one works like logging.StreamHandler, # except it also colors the Command Line nicely handler = RagdollGuiLogHandler()