0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 15:33:54 +01:00

ircd::mods: Move unload success log to debug.

This commit is contained in:
Jason Volk 2021-03-10 23:10:00 -08:00
parent d115d88e6c
commit 5b004be146

View file

@ -131,9 +131,12 @@ noexcept
handle_stuck(mod); handle_stuck(mod);
return false; return false;
} }
else log::info
log::logf
{ {
log, "Unloaded '%s'", mod.name() log, log::level::DEBUG,
"Unloaded '%s'",
mod.name()
}; };
assert(!mod.handle.is_loaded()); assert(!mod.handle.is_loaded());