refactor: simplify cowork daemon recovery patch (#408)

Collapse Patch 6b console.log calls to single lines to match the
convention used in Patches 7-9. Each message fits well under 80
characters and doesn't need to be split across three lines.

Co-Authored-By: Claude <claude@anthropic.com>
This commit is contained in:
Travis Stockton
2026-04-16 16:53:30 -05:00
parent fe403ccce0
commit ef2aac500d

View File

@@ -1413,19 +1413,13 @@ if (serviceErrorIdx !== -1) {
whole,
'const ' + name + '=[' + newContents + '];'
);
console.log(
' Added VM images to reinstall delete list'
);
console.log(' Added VM images to reinstall delete list');
patchCount++;
} else {
console.log(
' Reinstall delete list already includes VM images'
);
console.log(' Reinstall delete list already includes VM images');
}
} else {
console.log(
' WARNING: Could not find reinstall file list array'
);
console.log(' WARNING: Could not find reinstall file list array');
}
}