summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorDaniel De Graaf <danieldg@inspircd.org>2010-05-08 14:25:00 -0500
committerDaniel De Graaf <danieldg@inspircd.org>2010-05-08 14:25:00 -0500
commitf3dc5572200b4bce6b09448ac4660e2d889cb038 (patch)
tree0c837c935653aa6f8609bbc0fcced8b842c30f47 /src/inspircd.cpp
parentcb4c516ace8fef75b8a54a141c3644af9697ac0a (diff)
Change -debug to force RAWIO level logging and disable all other logs
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index c6faf8802..b4a013e50 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -457,7 +457,7 @@ InspIRCd::InspIRCd(int argc, char** argv) :
if (do_debug)
{
FileWriter* fw = new FileWriter(stdout);
- FileLogStream* fls = new FileLogStream(DEBUG, fw);
+ FileLogStream* fls = new FileLogStream(RAWIO, fw);
Logs->AddLogTypes("*", fls, true);
}
else if (!this->OpenLog(argv, argc))