From ee82d70f21577540c2e518b4aa8fc5a04a697010 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Fri, 7 Feb 2025 15:31:14 +0100 Subject: [PATCH] Add missing parameter in non-colorized outputs --- src/MDOutputHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MDOutputHandler.php b/src/MDOutputHandler.php index cb387d8..e6475c8 100644 --- a/src/MDOutputHandler.php +++ b/src/MDOutputHandler.php @@ -158,7 +158,7 @@ final class MDOutputHandler { // Generate the message to log. $format = match($this->color_output) { true => $statusCode->get_cli_color() . "%s" . MDConsoleColors::COLOR_OFF . " │ " . MDConsoleColors::FG_AQUA . "%s" . MDConsoleColors::FG_GREY . "%s#%'.08d" . MDConsoleColors::COLOR_OFF . " │ " . MDConsoleColors::FG_GREY . "%s │ %s" . MDConsoleColors::COLOR_OFF . " │ %s", - default => "%s │ %s#%'.08d │ %s │ %s │ %s", + default => "%s │ %s%s#%'.08d │ %s │ %s │ %s", }; $message = \sprintf($format . PHP_EOL, $statusSymbol, $this->_context, $contextStr, $this->_counter, $this->_human_filesize(\memory_get_usage()), $date, $msg);