1
0
Fork 0

demote tree printing to debug logging level

This commit is contained in:
Kevin Matz 2018-10-28 17:07:20 -04:00
parent b807860ab4
commit 583a3f8a47
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class OscCommentMacroListener(CommentMacroListener):
def enterStatement(self, ctx: CommentMacroParser.StatementContext):
# print the lisp tree of this macro
lisp_tree_str = ctx.toStringTree(recog=ctx.parser)
logger.info(beautify_lisp_string(lisp_tree_str))
logger.debug(beautify_lisp_string(lisp_tree_str))
def enterTarget(self, ctx: CommentMacroParser.TargetContext):
ctx.targets = []