summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 11:45:04 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 11:45:04 +0000
commite86afd775c59441ff66222b2c3142b01ec2113af (patch)
treef4e0348b4d1b11d6720bf632a6f54637e5e971de /src
parente49cb4ecfca4cf9bf5c2df2f97278613b82e5fd8 (diff)
Finished moving main config items into class ServerConfig
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2399 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/inspircd.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 104923b67..873e48a22 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -318,6 +318,7 @@ void ReadConfig(bool bail, userrec* user)
log(DEFAULT,"No MaxWhoResults specified or size out of range, setting to default of 128.");
Config->MaxWhoResults = 128;
}
+ Config->LogLevel = DEFAULT;
if (!strcmp(dbg,"debug"))
{
Config->LogLevel = DEBUG;
@@ -331,6 +332,7 @@ void ReadConfig(bool bail, userrec* user)
Config->LogLevel = SPARSE;
if (!strcmp(dbg,"none"))
Config->LogLevel = NONE;
+
readfile(MOTD,Config->motd);
log(DEFAULT,"Reading message of the day...");
readfile(RULES,Config->rules);
@@ -2231,9 +2233,9 @@ int InspIRCd(char** argv, int argc)
* into smaller sub-functions, much tidier -- Brain
*/
OpenLog(argv, argc);
+ ReadConfig(true,NULL);
CheckRoot();
SetupCommandTable();
- ReadConfig(true,NULL);
AddServerName(Config->ServerName);
CheckDie();
boundPortCount = BindPorts();