more verbose ranking log

log-input-events
sezanzeb 2 years ago
parent cc2da25d11
commit ea23a317d7

@ -223,13 +223,16 @@ class Injector(multiprocessing.Process):
if len(candidates) > 1: if len(candidates) > 1:
# there is more than on input device which can be used for this # there is more than on input device which can be used for this
# event we choose only one determined by the ranking # event we choose only one determined by the ranking
ranked_devices = [
(device.name, classify(device)) for device in candidates
]
device = sorted( device = sorted(
candidates, key=lambda d: ranking.index(classify(d)) ranked_devices,
key=lambda ranked_device: ranking.index(ranked_device[1])
)[0] )[0]
logger.warning( logger.warning(
'Only "%s" will be grabbed out of %d possible devices', 'Only the first device out of %s will be grabbed',
device.name, ranked_devices
len(candidates)
) )
elif len(candidates) == 1: elif len(candidates) == 1:
device = candidates.pop() device = candidates.pop()

Loading…
Cancel
Save