From b4e1b5aeca512c6d960c95e6a11982347ec2d8a2 Mon Sep 17 00:00:00 2001 From: Jens <34610614+AGuyNamedJens@users.noreply.github.com> Date: Fri, 31 Mar 2023 10:46:36 +0200 Subject: [PATCH] Rename controlpanel.log to installer.log --- public/install/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/install/functions.php b/public/install/functions.php index e530d3df..6ad3beca 100644 --- a/public/install/functions.php +++ b/public/install/functions.php @@ -243,7 +243,7 @@ function run_console(string $command, array $descriptors = null, string $cwd = n function wh_log(string $message, string $level = 'info', array $context = []): void { $formatter = new LineFormatter(null, null, true, true); - $stream = new StreamHandler(dirname(__FILE__, 3) . '/storage/logs/controlpanel.log', Logger::DEBUG); + $stream = new StreamHandler(dirname(__FILE__, 3) . '/storage/logs/installer.log', Logger::DEBUG); $stream->setFormatter($formatter); $log = new Logger('ControlPanel');