From 73f872577779e7e054a77e4d5d6dc300312c05dc Mon Sep 17 00:00:00 2001 From: doitux Date: Tue, 6 Feb 2007 00:16:50 +0000 Subject: [PATCH] --- src/gui/qt/log.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/qt/log.cpp b/src/gui/qt/log.cpp index 5293714f..55121d86 100644 --- a/src/gui/qt/log.cpp +++ b/src/gui/qt/log.cpp @@ -32,6 +32,7 @@ Log::Log(mainWindowImpl* w) : myW(w) myLogDir = new QDir(QString::fromStdString(myConfig->readConfigString("LogDir"))); #ifdef _WIN32 + cout << myLogDir->absolutePath()+"\\pokerth-log-"+QDateTime::currentDateTime().toString("yyyy-MM-dd_hh:mm:ss")+".html" << endl; myLogFile = new QFile(myLogDir->absolutePath()+"\\pokerth-log-"+QDateTime::currentDateTime().toString("yyyy-MM-dd_hh:mm:ss")+".html"); #else myLogFile = new QFile(myLogDir->absolutePath()+"/pokerth-log-"+QDateTime::currentDateTime().toString("yyyy-MM-dd_hh:mm:ss")+".html");