diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-04-21 22:08:33 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-04-21 22:08:33 +0200 |
commit | 581460dcf95c76d228785dbd0e894fbeb2c1a22d (patch) | |
tree | 417f96c0dc6e540e770222d32815508b394d7509 /application | |
parent | 6bd2605a79bec9267740f223c87d56d2263d98b8 (diff) | |
download | MultiMC-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.
Diffstat (limited to 'application')
-rw-r--r-- | application/MultiMC.cpp | 2 |
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(); |