mirror of
https://github.com/onyx-and-iris/nvda-voicemeeter.git
synced 2024-11-22 18:00:50 +00:00
add debug logs for popups
This commit is contained in:
parent
2666d8081a
commit
b3771b13c0
@ -141,6 +141,8 @@ class NVDAVMWindow(psg.Window):
|
||||
filepath = None
|
||||
while True:
|
||||
event, values = window.read()
|
||||
self.logger.debug(f"event::{event}")
|
||||
self.logger.debug(f"values::{values}")
|
||||
if event in (psg.WIN_CLOSED, "Cancel"):
|
||||
break
|
||||
elif event.endswith("||FOCUS IN"):
|
||||
@ -189,8 +191,8 @@ class NVDAVMWindow(psg.Window):
|
||||
data = {}
|
||||
while True:
|
||||
event, values = window.read()
|
||||
print(f"event: {event}")
|
||||
print(f"values: {values}")
|
||||
self.logger.debug(f"event::{event}")
|
||||
self.logger.debug(f"values::{values}")
|
||||
if event in (psg.WIN_CLOSED, "Cancel"):
|
||||
break
|
||||
elif event.endswith("||KEY ENTER"):
|
||||
|
Loading…
Reference in New Issue
Block a user