mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 15:30:52 +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
|
||||
{
|
||||
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()
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue