summaryrefslogtreecommitdiff
path: root/src/helperfuncs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/helperfuncs.cpp')
-rw-r--r--src/helperfuncs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp
index e4be94ec0..07f9228d4 100644
--- a/src/helperfuncs.cpp
+++ b/src/helperfuncs.cpp
@@ -83,7 +83,7 @@ void InspIRCd::Log(int level, const std::string &text)
if (Config->log_file && Config->writelog)
{
- std::string out = std::string(TIMESTR) + text.c_str() + "\n";
+ std::string out = std::string(TIMESTR) + " " + text.c_str() + "\n";
this->Logger->WriteLogLine(out);
}