From 336d8ef39c279d5d94e4df42c92e66f96f3882f1 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Wed, 3 Dec 2008 17:32:39 +0000 Subject: [PATCH] fixes for the log file functionality --- src/server.cpp | 2 +- src/util.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server.cpp b/src/server.cpp index 5a7704c5..cd63ed2d 100755 --- a/src/server.cpp +++ b/src/server.cpp @@ -117,7 +117,7 @@ void CServer::Stop() // logging const QString strLogStr = CLogTimeDate::toString() + ": server stopped " - "#####################################################"; + "#############################################"; qDebug() << strLogStr; // on console Logging << strLogStr; // in log file diff --git a/src/util.h b/src/util.h index c05ed954..3a9a7469 100755 --- a/src/util.h +++ b/src/util.h @@ -469,7 +469,7 @@ public: return QString().setNum ( curDateTime.date().day() ) + "." + QString().setNum ( curDateTime.date().month() ) + "." + QString().setNum ( curDateTime.date().year() ) + " " + - curDateTime.time().toString() + ": "; + curDateTime.time().toString(); } };