summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-30 23:58:24 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-30 23:58:24 +0000
commitc5ad4c096148112d281510d11558c60962dcece5 (patch)
tree33d695f975de730679ae4880c85c88eefcbb1591 /src
parent4e90e203ae6c73cfce1338ce39bc52ba0cb8dae1 (diff)
Configuration errors now go to the error log
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1575 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/inspircd.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 70aa4326c..3ec24e38f 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -269,6 +269,7 @@ void ReadConfig(bool bail, userrec* user)
if (!LoadConf(CONFIG_FILE,&config_f,&errstr))
{
errstr.seekg(0);
+ log(DEFAULT,"There were errors in your configuration:\n%s",errstr.str().c_str());
if (bail)
{
printf("There were errors in your configuration:\n%s",errstr.str().c_str());