gadgetbridge: Disable the not-implemented message

Currently the not-implemented message provokes GadgetBridget into
issuing lots of annoying toaster messages. It's still useful for debugging
but let's disable it by default.

Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
This commit is contained in:
Daniel Thompson 2020-08-15 20:37:52 +01:00
parent 5ae327ea54
commit 34ca73ee60

View file

@ -50,7 +50,8 @@ def GB(cmd):
elif task == 'notify-':
wasp.system.unnotify(cmd['id'])
else:
_info('Command "{}" is not implemented'.format(cmd))
pass
#_info('Command "{}" is not implemented'.format(cmd))
except Exception as e:
msg = io.StringIO()
sys.print_exception(e, msg)