more logging improvements

This commit is contained in:
Jakob Ketterl
2019-07-28 12:11:22 +02:00
parent ce662796e3
commit fa08009c50
3 changed files with 12 additions and 11 deletions

View File

@ -499,6 +499,9 @@ class dsp(object):
if pipe_path:
try:
os.unlink(pipe_path)
except FileNotFoundError:
# it seems like we keep calling this twice. no idea why, but we don't need the resulting error.
pass
except Exception:
logger.exception("try_delete_pipes()")