Description
There is a bug in the EventMessageHandler where the logger is using string formatting (%s) but missing the corresponding event.id arguments. As a result, the logs will literally output event %s rejected... instead of replacing %s with the actual event ID, which will make debugging difficult.
This happens in two places inside src/handlers/event-message-handler.ts when an event is rejected for being expired or rate-limited.
Description
There is a bug in the
EventMessageHandlerwhere the logger is using string formatting (%s) but missing the correspondingevent.idarguments. As a result, the logs will literally outputevent %s rejected...instead of replacing%swith the actual event ID, which will make debugging difficult.This happens in two places inside
src/handlers/event-message-handler.tswhen an event is rejected for being expired or rate-limited.