chore: improve log output for protocol fetch with multiple messages

This commit is contained in:
pk5ls20 2025-04-04 01:59:31 +08:00
parent 863a953ae1
commit 3cf502fea3
No known key found for this signature in database
GPG Key ID: 6370ED7A169F493A

View File

@ -373,7 +373,8 @@ export class OneBotMsgApi {
try { try {
multiMsgs = await this.core.apis.PacketApi.pkt.operation.FetchForwardMsg(element.resId); multiMsgs = await this.core.apis.PacketApi.pkt.operation.FetchForwardMsg(element.resId);
} catch (e) { } catch (e) {
this.core.context.logger.logError('Protocol FetchForwardMsg fallback failed!', e); this.core.context.logger.logError(`Protocol FetchForwardMsg fallback failed!
element = ${JSON.stringify(element)} , error=${e})`);
return null; return null;
} }
} }