0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-25 08:12:37 +01:00

modules/m_room_message: Show event_id in infolog string.

This commit is contained in:
Jason Volk 2018-10-17 22:00:50 -07:00
parent d276426a27
commit e24fb3237c

View file

@ -27,9 +27,9 @@ _message_notify(const m::event &event,
log::info
{
"%s %s said in %s %s :%s%s",
json::get<"origin"_>(event),
"%s said %s in %s %s :%s%s",
json::get<"sender"_>(event),
json::get<"event_id"_>(event),
json::get<"room_id"_>(event),
json::get<"content"_>(event).get("msgtype"),
trunc(body, 128),