mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
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:
@@ -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('');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user