[core] Add debug output for partial bar update

see #353
This commit is contained in:
Tobias Witek 2019-01-20 07:34:27 +01:00
parent d9df96adcb
commit b377a93e49
2 changed files with 3 additions and 0 deletions

View file

@ -90,6 +90,7 @@ class I3BarInput(object):
def wait(self, timeout):
self._condition.wait(timeout)
rv = self.event if self.has_event else None
log.debug("received input event: {}".format(rv))
self.has_event = False
return rv