From 5f7cbd3435a29c0ae67e587f021754e7e69df92e Mon Sep 17 00:00:00 2001 From: webdevcody Date: Tue, 6 Jan 2026 16:14:10 -0500 Subject: [PATCH] refactor: improve logging format in launchDockerContainers function - Updated the logging format in the launchDockerContainers function to enhance readability by breaking long lines into multiple lines. This change improves the clarity of log messages when starting Docker containers. --- scripts/launcher-utils.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/launcher-utils.mjs b/scripts/launcher-utils.mjs index 53e79b32..cdadd56e 100644 --- a/scripts/launcher-utils.mjs +++ b/scripts/launcher-utils.mjs @@ -947,7 +947,10 @@ export async function launchDockerContainers({ baseDir, processes }) { }, }); } else { - log(`Images are up to date (commit: ${rebuildCheck.currentSha?.substring(0, 8) || 'unknown'})`, 'green'); + log( + `Images are up to date (commit: ${rebuildCheck.currentSha?.substring(0, 8) || 'unknown'})`, + 'green' + ); log('Starting Docker containers...', 'yellow'); console.log('');