From ad40b6420ef9a0b15e86bcc2728cc6c47834d7dd Mon Sep 17 00:00:00 2001 From: brain Date: Fri, 6 Apr 2007 20:44:46 +0000 Subject: More information in error when a module cant be loaded git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6755 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/helperfuncs.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 37a9e1b04..3f0b5ff0c 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -461,13 +461,13 @@ void InspIRCd::LoadAllModules() for (int count = 0; count < Config->ConfValueEnum(Config->config_data, "module"); count++) { - Config->ConfValue(Config->config_data, "module","name",count,configToken,MAXBUF); + Config->ConfValue(Config->config_data, "module", "name", count, configToken, MAXBUF); printf("[\033[1;32m*\033[0m] Loading module:\t\033[1;32m%s\033[0m\n",configToken); if (!this->LoadModule(configToken)) { - this->Log(DEFAULT,"There was an error loading a module: %s", this->ModuleError()); - printf("\nThere was an error loading a module: %s\n\n",this->ModuleError()); + this->Log(DEFAULT,"There was an error loading the module '%s': %s", configToken, this->ModuleError()); + printf("\n[\033[1;31m*\033[0m] There was an error loading the module '%s': %s\n\n", configToken, this->ModuleError()); Exit(EXIT_STATUS_MODULE); } } -- cgit v1.2.3