mirror of
https://github.com/matrix-construct/construct
synced 2024-12-25 23:14:13 +01:00
ircd::mods: Move unload success log to debug.
This commit is contained in:
parent
d115d88e6c
commit
5b004be146
1 changed files with 5 additions and 2 deletions
|
@ -131,9 +131,12 @@ noexcept
|
|||
handle_stuck(mod);
|
||||
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());
|
||||
|
|
Loading…
Reference in a new issue