diff options
| author | 2006-03-02 18:21:29 +0000 | |
|---|---|---|
| committer | 2006-03-02 18:21:29 +0000 | |
| commit | c22eb39ad34f0fc929b2cd953f8dccdbea79a82e (patch) | |
| tree | 0bc136fe4f5b49461a9a6c810506ccec734ed794 /src/userprocess.cpp | |
| parent | Slight optimization here (diff) | |
Changed output on startup
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3435 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/userprocess.cpp')
| -rw-r--r-- | src/userprocess.cpp | 4 |
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); } } |
