minor updates in inputSourceChanged() to log the change

This commit is contained in:
Christian 2017-10-05 11:28:55 +02:00
parent 5bf28aafd9
commit 3852bd7125

View File

@ -90,7 +90,7 @@ def readInputSource():
def inputSourceChanged():
global input_source
if (input_source != readInputSource()):
log.debug('Input source has changed')
log.debug('Input source has changed to {}'.format(readInputSource() ))
input_source = readInputSource()
return True
else: