diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-02 18:21:29 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-02 18:21:29 +0000 |
commit | c22eb39ad34f0fc929b2cd953f8dccdbea79a82e (patch) | |
tree | 0bc136fe4f5b49461a9a6c810506ccec734ed794 /src | |
parent | 2166d5e63c28a520536a9b3c5379e388fb17bc57 (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')
-rwxr-xr-x | src/svn-rev.sh | 2 | ||||
-rw-r--r-- | src/userprocess.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/svn-rev.sh b/src/svn-rev.sh index 8e804010c..2d41e01be 100755 --- a/src/svn-rev.sh +++ b/src/svn-rev.sh @@ -1 +1 @@ -echo 3432 +echo 3434 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); } } |