Commit 3e89c5ce45879a89c02a27fed3e4ff18a8dcec0b

Authored by Olli-Pekka Kahilakoski
1 parent 8a14b309
Exists in master

Review comment: Remove printing to console when pedal state changes

Showing 1 changed file with 0 additions and 2 deletions   Show diff stats
invesalius/net/pedal_connection.py
... ... @@ -48,11 +48,9 @@ class PedalConnection(Thread, metaclass=Singleton):
48 48 # message types and be more stringent about the messages.
49 49 #
50 50 if msg.type == 'note_on':
51   - print("Pedal pressed")
52 51 state = True
53 52  
54 53 elif msg.type == 'note_off':
55   - print("Pedal released")
56 54 state = False
57 55  
58 56 else:
... ...