summaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2021-04-19 19:58:03 +0100
committerSadie Powell <sadie@witchery.services>2021-04-19 19:59:41 +0100
commit9ec004958f2af816fc90f753964338eb19961186 (patch)
treefc59c31fd28302c36a92f6e75cefee547c892753 /src/modules.cpp
parentbde0e7e84668df48afaffda7a52eddc0aca543d3 (diff)
Improve the messages sent when loading/unloading/reloading modules.
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp2
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();
}