fix(gateway): resolve startup hang caused by qqbot plugin manifest ID mismatch & stderr flood (#718)
This commit is contained in:
committed by
GitHub
Unverified
parent
aa2e4eae14
commit
ec8db0be75
@@ -30,6 +30,9 @@ export function classifyGatewayStderrMessage(message: string): GatewayStderrClas
|
||||
if (msg.includes('DeprecationWarning')) return { level: 'debug', normalized: msg };
|
||||
if (msg.includes('Debugger attached')) return { level: 'debug', normalized: msg };
|
||||
|
||||
// Gateway config warnings (e.g. stale plugin entries) are informational, not actionable.
|
||||
if (msg.includes('Config warnings:')) return { level: 'debug', normalized: msg };
|
||||
|
||||
// Electron restricts NODE_OPTIONS in packaged apps; this is expected and harmless.
|
||||
if (msg.includes('node: --require is not allowed in NODE_OPTIONS')) {
|
||||
return { level: 'debug', normalized: msg };
|
||||
|
||||
Reference in New Issue
Block a user