diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-07-03 09:27:46 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-07-03 09:27:46 +0200 |
commit | e42f3541d9e16264f79e090ddd87b864f5c2a837 (patch) | |
tree | 4058b20f4d913678d616a7ec94a58109b2c21090 /lib/lex.py | |
parent | f1a9e8b419c3b0836989565fa462d7c67a4bc9b9 (diff) |
more consistent logging; use logger. instead of logging. where appropriate
Diffstat (limited to 'lib/lex.py')
-rw-r--r-- | lib/lex.py | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,4 +1,7 @@ from .sly import Lexer, Parser +import logging + +logger = logging.getLogger(__name__) class TimedWordLexer(Lexer): @@ -38,7 +41,7 @@ class TimedSequenceLexer(Lexer): FUNCTIONSEP = r";" def error(self, t): - print("Illegal character '%s'" % t.value[0]) + logger.error("Illegal character '%s'" % t.value[0]) if t.value[0] == "{" and t.value.find("}"): self.index += 1 + t.value.find("}") else: @@ -153,11 +156,11 @@ class TimedSequenceParser(Parser): def error(self, p): if p: - print("Syntax error at token", p.type) + logger.error("Syntax error at token", p.type) # Just discard the token and tell the parser it's okay. self.errok() else: - print("Syntax error at EOF") + logger.error("Syntax error at EOF") class TimedWord: |