0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 08:42:34 +01:00

modules/client/rooms/report: Provide missing error string in log message.

This commit is contained in:
Jason Volk 2019-03-17 13:41:33 -07:00
parent 22fe24f54f
commit 21d8c9ce76

View file

@ -126,7 +126,8 @@ catch(const std::exception &e)
{ {
log::critical log::critical
{ {
m::log, "Creating the '%s' room failed", m::log, "Creating the '%s' room failed :%s",
string_view{report_room_id} string_view{report_room_id},
e.what()
}; };
} }