refactor(core): Change log-level for unregistered pushRef logging (no-changelog) (#15117)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2025-05-06 09:21:28 +02:00
committed by GitHub
parent 7d05cb2a37
commit 5b1aa062a7

View File

@@ -95,7 +95,7 @@ export abstract class AbstractPush<Connection> extends TypedEmitter<AbstractPush
sendToOne(pushMsg: PushMessage, pushRef: string) { sendToOne(pushMsg: PushMessage, pushRef: string) {
if (this.connections[pushRef] === undefined) { if (this.connections[pushRef] === undefined) {
this.logger.error(`The session "${pushRef}" is not registered.`, { pushRef }); this.logger.debug(`The session "${pushRef}" is not registered.`, { pushRef });
return; return;
} }