summaryrefslogtreecommitdiff
path: root/src/userprocess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/userprocess.cpp')
-rw-r--r--src/userprocess.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/userprocess.cpp b/src/userprocess.cpp
index 118916248..76be62d71 100644
--- a/src/userprocess.cpp
+++ b/src/userprocess.cpp
@@ -413,11 +413,11 @@ void LoadAllModules(InspIRCd* ServerInstance)
for (int count = 0; count < Config->ConfValueEnum("module",&Config->config_f); count++)
{
Config->ConfValue("module","name",count,configToken,&Config->config_f);
- printf("Loading module... \033[1;32m%s\033[0m\n",configToken);
+ printf("[\033[1;32m*\033[0m] Loading module:\t\033[1;32m%s\033[0m\n",configToken);
if (!ServerInstance->LoadModule(configToken))
{
log(DEFAULT,"Exiting due to a module loader error.");
- printf("\nThere was an error loading a module: %s\n\nYou might want to do './inspircd start' instead of 'bin/inspircd'\n\n",ServerInstance->ModuleError());
+ printf("\nThere was an error loading a module: %s\n\n",ServerInstance->ModuleError());
Exit(0);
}
}