diff options
| author | Tannin <devnull@localhost> | 2014-01-13 19:32:54 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-01-13 19:32:54 +0100 |
| commit | a083a2d3b6506ab95d3b18ab0ffa7751750e0249 (patch) | |
| tree | 1bb333c8c8b1df4889f65dc383c25e37c6046289 /src/logbuffer.cpp | |
| parent | db09b806b9e765b5cb49a9a80f74a4440fff3027 (diff) | |
- implemented hook for NtQueryDirectoryFile
- saves list is now automatically updated on FS changes
- optimization: data tree widget is no longer filled completely at once but one directory at a time
- bugfix: pending downloads were not removed from list after a failed nxm request
- bugfix: there was still a nmm.nexusmods.com link
- bugfix: the text "alpha" in version strings wasn't interpreted correctly
Diffstat (limited to 'src/logbuffer.cpp')
| -rw-r--r-- | src/logbuffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logbuffer.cpp b/src/logbuffer.cpp index f930cf10..6f3f640f 100644 --- a/src/logbuffer.cpp +++ b/src/logbuffer.cpp @@ -131,7 +131,7 @@ void LogBuffer::log(QtMsgType type, const char *message) if (!s_Instance.isNull()) { s_Instance->logMessage(type, message); } - fprintf(stdout, "[%c] %s: %s\n", msgTypeID(type), qPrintable(QTime::currentTime().toString()), message); + fprintf(stdout, "%s [%c] %s\n", qPrintable(QTime::currentTime().toString()), msgTypeID(type), message); fflush(stdout); } |
