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:
parent
22fe24f54f
commit
21d8c9ce76
1 changed files with 3 additions and 2 deletions
|
@ -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()
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue