diff options
author | Daniel De Graaf <danieldg@inspircd.org> | 2010-05-08 14:25:00 -0500 |
---|---|---|
committer | Daniel De Graaf <danieldg@inspircd.org> | 2010-05-08 14:25:00 -0500 |
commit | f3dc5572200b4bce6b09448ac4660e2d889cb038 (patch) | |
tree | 0c837c935653aa6f8609bbc0fcced8b842c30f47 /src/inspircd.cpp | |
parent | cb4c516ace8fef75b8a54a141c3644af9697ac0a (diff) |
Change -debug to force RAWIO level logging and disable all other logs
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 2 |
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)) |