diff options
author | Sadie Powell <sadie@witchery.services> | 2021-04-19 19:58:03 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-04-19 19:59:41 +0100 |
commit | 9ec004958f2af816fc90f753964338eb19961186 (patch) | |
tree | fc59c31fd28302c36a92f6e75cefee547c892753 /src/modules.cpp | |
parent | bde0e7e84668df48afaffda7a52eddc0aca543d3 (diff) |
Improve the messages sent when loading/unloading/reloading modules.
Diffstat (limited to 'src/modules.cpp')
-rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index fb7fa55dd..6bb789753 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -442,7 +442,7 @@ void ModuleManager::DoSafeUnload(Module* mod) Modules.erase(modfind); ServerInstance->GlobalCulls.AddItem(mod); - ServerInstance->Logs->Log("MODULE", LOG_DEFAULT, "Module %s unloaded",mod->ModuleSourceFile.c_str()); + ServerInstance->Logs->Log("MODULE", LOG_DEFAULT, "The %s module was unloaded", mod->ModuleSourceFile.c_str()); ServerInstance->ISupport.Build(); } |