From 1c9d731abdcc7784ef528ab691ace9573a38f987 Mon Sep 17 00:00:00 2001 From: David Robert Verelst <dave@dtu.dk> Date: Fri, 5 Aug 2016 09:58:37 +0200 Subject: [PATCH] launch.py: don't keep creating a new log file in crontab mode --- launch.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/launch.py b/launch.py index 383c2e4..a46d174 100755 --- a/launch.py +++ b/launch.py @@ -931,8 +931,12 @@ if __name__ == '__main__': path_log = os.path.join(os.getcwd(), 'launch_scheduler_log.txt') elif not os.path.isabs(options.logfile): path_log = os.path.join(os.getcwd(), options.logfile) - # log to file and do not print messages - output = Logger(open(path_log, 'w'), True) + # log to file and do not print messages, but in crontab mode, append! + if os.path.exists(path_log) and options.crontab: + mode = 'a' + else: + mode = 'w' + output = Logger(open(path_log, mode), True) sys.stdout = output else: path_log = None -- GitLab