Browse Source

Lowercase logger name

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.10.0
pwwang 4 years ago
committed by GitHub
parent
commit
a6201b41e4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lark/common.py

+ 1
- 1
lark/common.py View File

@@ -2,7 +2,7 @@ import logging
from .utils import Serialize from .utils import Serialize
from .lexer import TerminalDef from .lexer import TerminalDef


LOGGER = logging.getLogger("LARK")
LOGGER = logging.getLogger("lark")
LOGGER.addHandler(logging.StreamHandler()) LOGGER.addHandler(logging.StreamHandler())
# Set to highest level, since we have some warnings amongst the code # Set to highest level, since we have some warnings amongst the code
# By default, we should not output any log messages # By default, we should not output any log messages


Loading…
Cancel
Save