diff --git a/src/onebot11/config.ts b/src/onebot11/config.ts index 2457724a6..0ba3457e4 100644 --- a/src/onebot11/config.ts +++ b/src/onebot11/config.ts @@ -67,6 +67,11 @@ class Config implements OB11Config { Object.assign(this, jsonData); // eslint-disable-next-line } catch (e) { + if (e instanceof SyntaxError) { + console.error(`配置文件 ${ob11ConfigPath} 格式错误,请检查配置文件:`, e.message); + }else{ + console.error(`读取配置文件 ${ob11ConfigPath} 时发生错误:`, e.message); + } } return this; }