summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2017-03-05 21:32:11 +0100
committerGitHub <noreply@github.com>2017-03-05 21:32:11 +0100
commit5583d8dc5ff202d411d7985b6bbfb240beeacddd (patch)
tree5e698c3b99e9c3addf516a2dcd7b3b2686fc15cb /src/inspircd.cpp
parent51ff3d67ed1b6f1594373d3745293ef155a26f44 (diff)
parent7c301149883e038a4bf3ce4a7a9a6a91b3e1ce97 (diff)
Merge pull request #1292 from SaberUK/master+flush
Allow <log> tags to specify how often logs should be flushed.
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 5fe2ef076..0c9b67910 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -343,7 +343,7 @@ InspIRCd::InspIRCd(int argc, char** argv) :
if (do_debug)
{
- FileWriter* fw = new FileWriter(stdout);
+ FileWriter* fw = new FileWriter(stdout, 1);
FileLogStream* fls = new FileLogStream(LOG_RAWIO, fw);
Logs->AddLogTypes("*", fls, true);
}