diff options
Diffstat (limited to 'klippy/msgproto.py')
-rw-r--r-- | klippy/msgproto.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/klippy/msgproto.py b/klippy/msgproto.py index 41f0a11b..a26bfbc4 100644 --- a/klippy/msgproto.py +++ b/klippy/msgproto.py @@ -321,11 +321,15 @@ class MessageParser: else: tval = value argparts[name] = tval + except error as e: + raise except: #logging.exception("Unable to extract params") raise error("Unable to extract params from: %s" % (msgname,)) try: cmd = mp.encode_by_name(**argparts) + except error as e: + raise except: #logging.exception("Unable to encode") raise error("Unable to encode: %s" % (msgname,)) |