convert console.log to debug

This commit is contained in:
Girish Ramakrishnan
2025-10-07 09:35:54 +02:00
parent 46d195557b
commit 3a0febe760
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ async function pruneVolumes() {
debug('pruneVolumes: remove all unused local volumes');
const [error] = await safe(shell.spawn('docker', [ 'volume', 'prune', '--all', '--force' ], {}));
if (error) console.log(`Error pruning volumes: ${error.mesage}`);
if (error) debug(`pruneVolumes: error pruning volumes: ${error.mesage}`);
}
async function createDockerNetwork() {