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:
parent
f94f519271
commit
f9ab38c667
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue