We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 626a318 commit 39f0ce5Copy full SHA for 39f0ce5
src/utils/socketjson.mts
@@ -100,7 +100,7 @@ export async function readSocketJson(
100
debugLog(e)
101
102
if (defaultOnError) {
103
- logger.warn('Warning: failed to parse file, using default')
+ logger.warn('Warning: failed to read file, using default')
104
return { ok: true, data: getDefaultSocketJson() }
105
}
106
const msg = (e as { message: string })?.message || '(none)'
@@ -120,7 +120,7 @@ export async function readSocketJson(
120
debugLog(json)
121
122
123
- logger.warn('Warning: failed to read file, using default')
+ logger.warn('Warning: failed to parse file, using default')
124
125
126
0 commit comments