diff options
| author | Martin Braun <martin.braun@ettus.com> | 2021-04-26 23:45:15 +0200 | 
|---|---|---|
| committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-04-27 15:01:53 -0500 | 
| commit | bb22f3bebb84b18e506e8dcfa67382ba25c21a5f (patch) | |
| tree | bdef7315c7e31af6a9b18132c83fe3da9307abde | |
| parent | d28593d2dc859009f439ea676e5e665870862ff6 (diff) | |
| download | uhd-bb22f3bebb84b18e506e8dcfa67382ba25c21a5f.tar.gz uhd-bb22f3bebb84b18e506e8dcfa67382ba25c21a5f.tar.bz2 uhd-bb22f3bebb84b18e506e8dcfa67382ba25c21a5f.zip | |
mpm: Fix minor log formatting issue
| -rw-r--r-- | mpm/python/usrp_mpm/rpc_server.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/mpm/python/usrp_mpm/rpc_server.py b/mpm/python/usrp_mpm/rpc_server.py index 03ea05916..95078a2d6 100644 --- a/mpm/python/usrp_mpm/rpc_server.py +++ b/mpm/python/usrp_mpm/rpc_server.py @@ -184,7 +184,7 @@ class MPMServer(RPCServer):                  return function(*args)              except Exception as ex:                  self.log.error( -                    "Uncaught exception in method %s :%s \n %s ", +                    "Uncaught exception in method %s: %s \n %s ",                      command, str(ex), traceback.format_exc()                  )                  self._last_error = str(ex) | 
