From 0895eb3d747a808fb510dea5df6a67b0795a0fd2 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Tue, 12 Oct 2021 21:42:09 +0000 Subject: [PATCH] fixed errorlog path Signed-off-by: Arthur Lu --- src/cli/superscript.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/superscript.py b/src/cli/superscript.py index 4774902..d2201e0 100644 --- a/src/cli/superscript.py +++ b/src/cli/superscript.py @@ -536,7 +536,7 @@ def start(pid_path, verbose = False, profile = False, debug = False): else: - f = open('errorlog.txt', 'w+') + f = open('errorlog.log', 'w+') with daemon.DaemonContext( working_directory=os.getcwd(), pidfile=pidfile.TimeoutPIDLockFile(pid_path),