0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-28 14:58:20 +02:00

modules/m_vm: Minor formatting fix.

This commit is contained in:
Jason Volk 2019-07-14 13:50:33 -07:00
parent 5e15364e42
commit f355fb3135

View file

@ -599,7 +599,7 @@ catch(const m::error &e) // GENERAL MATRIX ERROR
return handle_error
(
*eval.opts, fault::GENERAL,
"eval %s (General Protection): %s %s :%s",
"eval %s (General Protection) :%s %s :%s",
event.event_id? string_view{event.event_id}: "<edu>"_sv,
e.what(),
unquote(json::object(e.content).get("errcode")),
@ -621,7 +621,7 @@ catch(const std::exception &e) // ALL OTHER ERRORS
return handle_error
(
*eval.opts, fault::GENERAL,
"eval %s (General Protection): %s",
"eval %s (General Protection) :%s",
event.event_id? string_view{event.event_id}: "<edu>"_sv,
e.what()
);