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.
This commit is contained in:
webdevcody
2026-01-06 16:14:10 -05:00
parent a4290b5863
commit 5f7cbd3435

View File

@@ -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('');