0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 20:28:52 +02: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
{
m::log, "Creating the '%s' room failed",
string_view{report_room_id}
m::log, "Creating the '%s' room failed :%s",
string_view{report_room_id},
e.what()
};
}