From 0a229786604d196e4b51d2ba8bb0f3ff467dd14d Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Fri, 10 May 2019 22:47:07 +0200 Subject: [PATCH] let's see if the logging works this way --- csdr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csdr.py b/csdr.py index 672d9a4..2fb8fc8 100755 --- a/csdr.py +++ b/csdr.py @@ -326,8 +326,8 @@ class dsp: pipe_path = getattr(self,pipe_name,None) if pipe_path: try: os.unlink(pipe_path) - except Exception as e: - logger.error("try_delete_pipes()", e) + except Exception: + logger.exception("try_delete_pipes()") def start(self): self.modification_lock.acquire()