From 3a0ca513d9f6c33003e153003a1c692b2bff4a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Mon, 22 Oct 2018 21:37:06 -0400 Subject: [PATCH] Added some logging and output when trying to restart Bazarr. --- bazarr/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bazarr/main.py b/bazarr/main.py index 4fb89e423..8d37e45e0 100644 --- a/bazarr/main.py +++ b/bazarr/main.py @@ -223,6 +223,8 @@ def restart(): except Exception as e: logging.error('BAZARR Cannot create bazarr.restart file.') else: + print 'Bazarr is being restarted...' + logging.info('Bazarr is being restarted...') restart_file.write('') restart_file.close()