From c30135b02564ed8cebc7c6257c7e0a13e570701e Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Sat, 5 Sep 2026 10:23:57 -0700 Subject: [PATCH] fix: exclude debug line break from styling --- lib/verbosity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/verbosity.js b/lib/verbosity.js index 88016817..280239f4 100644 --- a/lib/verbosity.js +++ b/lib/verbosity.js @@ -23,5 +23,5 @@ export function setVerbosityFromEnv() { export function debuglog(...args) { // Prepend a line break in case it's logged while the spinner is running - console.error(styleText('green', format('\n[DEBUG]', ...args))); + console.error('\n' + styleText('green', format('[DEBUG]', ...args))); }