mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-06-17 07:41:13 +03:00
Don't log when monitor.get_entry() returns None
This is expected due to code using this just to 'tickle' a display update.
This commit is contained in:
parent
8f2802fbcf
commit
672c0d3d49
@ -894,7 +894,8 @@ class AppWindow(object):
|
|||||||
while True:
|
while True:
|
||||||
entry = monitor.get_entry()
|
entry = monitor.get_entry()
|
||||||
if not entry:
|
if not entry:
|
||||||
logger.trace('No entry from monitor.get_entry()')
|
# This is expected due to some monitor.py code that appends `None`
|
||||||
|
# logger.trace('No entry from monitor.get_entry()')
|
||||||
return
|
return
|
||||||
|
|
||||||
# Update main window
|
# Update main window
|
||||||
|
Loading…
x
Reference in New Issue
Block a user