0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 18:22:50 +01:00

ircd:Ⓜ️ Relax the module init error log level.

This commit is contained in:
Jason Volk 2019-05-28 19:28:18 -07:00
parent f94f519271
commit f9ab38c667

View file

@ -105,7 +105,7 @@ catch(const m::error &e)
const std::string what(e.what()); const std::string what(e.what());
const std::string content(e.content); const std::string content(e.content);
const ctx::exception_handler eh; const ctx::exception_handler eh;
log::critical log::error
{ {
log, "%s %s", what, content log, "%s %s", what, content
}; };
@ -120,7 +120,7 @@ catch(const std::exception &e)
{ {
const std::string what(e.what()); const std::string what(e.what());
const ctx::exception_handler eh; const ctx::exception_handler eh;
log::critical log::error
{ {
log, "%s", what log, "%s", what
}; };