pring values debug in its own statement

This commit is contained in:
onyx-and-iris 2023-08-26 09:39:51 +01:00
parent 9d847cf01d
commit 66171e03a9
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
from pyparsing import Group, OneOrMore, Optional, Suppress, Word, alphanums, restOfLine
from pyparsing import Group, OneOrMore, Optional, Suppress, Word, alphanums
class Parser:

View File

@ -85,7 +85,8 @@ class NVDAVMWindow(psg.Window):
while True:
event, values = self.read()
self.logger.debug(f"event::{event}\nvalues::{values}")
self.logger.debug(f"event::{event}")
self.logger.debug(f"values::{values}")
if event in (psg.WIN_CLOSED, "Exit"):
break
elif event == "tabs":