mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
fix: change console.log to console.error for output messages in analysis scripts
This commit is contained in:
@@ -222,7 +222,7 @@ const outputPath = process.argv[2] || 'implementation-analysis.json'
|
||||
|
||||
try {
|
||||
writeFileSync(outputPath, serialized)
|
||||
console.log(`Implementation analysis written to ${outputPath}`)
|
||||
console.error(`Implementation analysis written to ${outputPath}`)
|
||||
} catch (error) {
|
||||
console.error(`Failed to write implementation analysis to ${outputPath}:`, error)
|
||||
}
|
||||
|
||||
@@ -207,7 +207,7 @@ const outputPath = process.argv[2] || 'stub-patterns.json'
|
||||
|
||||
try {
|
||||
writeFileSync(outputPath, serialized)
|
||||
console.log(`Stub summary written to ${outputPath}`)
|
||||
console.error(`Stub summary written to ${outputPath}`)
|
||||
} catch (error) {
|
||||
console.error(`Failed to write stub summary to ${outputPath}:`, error)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user