summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-04-21 22:08:33 +0200
committerPetr Mrázek <peterix@gmail.com>2017-04-21 22:08:33 +0200
commit581460dcf95c76d228785dbd0e894fbeb2c1a22d (patch)
tree417f96c0dc6e540e770222d32815508b394d7509
parent6bd2605a79bec9267740f223c87d56d2263d98b8 (diff)
downloadMultiMC-581460dcf95c76d228785dbd0e894fbeb2c1a22d.tar
MultiMC-581460dcf95c76d228785dbd0e894fbeb2c1a22d.tar.gz
MultiMC-581460dcf95c76d228785dbd0e894fbeb2c1a22d.tar.lz
MultiMC-581460dcf95c76d228785dbd0e894fbeb2c1a22d.tar.xz
MultiMC-581460dcf95c76d228785dbd0e894fbeb2c1a22d.zip
NOISSUE add missing log levels to MultiMC logging
Info and System are now recognized.
-rw-r--r--application/MultiMC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp
index 42f0c93d..32a50309 100644
--- a/application/MultiMC.cpp
+++ b/application/MultiMC.cpp
@@ -557,7 +557,7 @@ void MultiMC::initIcons()
void appDebugOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
- const char *levels = "DWCF";
+ const char *levels = "DWCFIS";
const QString format("%1 %2 %3\n");
qint64 msecstotal = MMC->timeSinceStart();