summaryrefslogtreecommitdiff
path: root/src/helperfuncs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/helperfuncs.cpp')
-rw-r--r--src/helperfuncs.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp
index 8ae88e752..d325b40aa 100644
--- a/src/helperfuncs.cpp
+++ b/src/helperfuncs.cpp
@@ -324,7 +324,9 @@ bool InspIRCd::OpenLog(char**, int)
return false;
}
- FileLogStream *f = new FileLogStream(this, Config->LogLevel, Config->log_file);
+ FileWriter* fw = new FileWriter(this, Config->log_file);
+ FileLogStream *f = new FileLogStream(this, Config->LogLevel, fw);
+
this->Logs->AddLogType("*", f);
return true;
}