mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 16:23:39 +02:00
Switched Time & Session ID Over
This commit is contained in:
parent
2427008ff3
commit
b3c3b2d34f
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ private:
|
|||
|
||||
|
||||
|
||||
static const QString FILENAME_FORMAT = "hifi-log%1_%2.txt";
|
||||
static const QString FILENAME_FORMAT = "hifi-log_%1%2.txt";
|
||||
static const QString DATETIME_FORMAT = "yyyy-MM-dd_hh.mm.ss";
|
||||
static const QString LOGS_DIRECTORY = "Logs";
|
||||
static const QString IPADDR_WILDCARD = "[0-9]*.[0-9]*.[0-9]*.[0-9]*";
|
||||
|
@ -69,7 +69,7 @@ QString getLogRollerFilename() {
|
|||
fileSessionID = "_" + SESSION_ID.toString().replace("{", "").replace("}", "");
|
||||
}
|
||||
|
||||
result.append(QString(FILENAME_FORMAT).arg(fileSessionID, now.toString(DATETIME_FORMAT)));
|
||||
result.append(QString(FILENAME_FORMAT).arg(now.toString(DATETIME_FORMAT), fileSessionID));
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue