0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-26 02:18:53 +02:00

ircd:Ⓜ️:event::append: Use consistent quoting around ids in format strings.

This commit is contained in:
Jason Volk 2020-12-28 00:57:34 -08:00
parent 67448469ae
commit 07733e6682

View file

@ -138,7 +138,7 @@ ircd::m::event::append::append(json::stack::object &object,
{
log::debug
{
log, "Not sending event '%s' because redacted.",
log, "Not sending event %s because redacted.",
string_view{event.event_id},
};
@ -166,7 +166,7 @@ ircd::m::event::append::append(json::stack::object &object,
{
log::debug
{
log, "Not sending event '%s' because '%s' is ignored by '%s'",
log, "Not sending event %s because %s is ignored by %s",
string_view{event.event_id},
json::get<"sender"_>(event),
string_view{*opts.user_id}