1
0
Fork 0

provide feedback during WAIT

This commit is contained in:
Kevin Matz 2018-10-28 17:35:16 -04:00
parent 669f4163e9
commit 95b5510e15
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@ class OscCommentMacroListener(CommentMacroListener):
self.osc = HogDevice(servers)
def exitWait(self, ctx: CommentMacroParser.WaitContext):
logger.info("Waiting " + str(ctx.number().value) + " seconds.")
sleep(ctx.number().value)
def enterStatement(self, ctx: CommentMacroParser.StatementContext):