From a6201b41e471897ef044696925911df86b94a886 Mon Sep 17 00:00:00 2001 From: pwwang <1188067+pwwang@users.noreply.github.com> Date: Tue, 30 Jun 2020 17:35:26 -0700 Subject: [PATCH] Lowercase logger name --- lark/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lark/common.py b/lark/common.py index aac9d75..3bd7c98 100644 --- a/lark/common.py +++ b/lark/common.py @@ -2,7 +2,7 @@ import logging from .utils import Serialize from .lexer import TerminalDef -LOGGER = logging.getLogger("LARK") +LOGGER = logging.getLogger("lark") LOGGER.addHandler(logging.StreamHandler()) # Set to highest level, since we have some warnings amongst the code # By default, we should not output any log messages