summaryrefslogtreecommitdiff
path: root/src/app/main.cpp
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@theqtcompany.com>2016-08-24 13:31:26 +0200
committerThomas Hartmann <Thomas.Hartmann@theqtcompany.com>2016-09-01 07:59:48 +0000
commit1df58005b566b360b844871d3bdce9ae90809ada (patch)
tree89c1c4d4b7f3e13df1d0e9cebe16ebbcd75569f2 /src/app/main.cpp
parent99411324af55114b7fdb8c09524be93246081c6e (diff)
downloadqt-creator-1df58005b566b360b844871d3bdce9ae90809ada.tar.gz
Adding logging rule qtc.*.info=false to disable output by default
I also added the qtc prefix to all logging categories. Task-number: QTCREATORBUG-16767 Change-Id: I04214dba9912fe6c669f10566582d6009b5d75f0 Reviewed-by: Robert Loehning <robert.loehning@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/app/main.cpp')
-rw-r--r--src/app/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp
index 13c178ec1a..d0b1759076 100644
--- a/src/app/main.cpp
+++ b/src/app/main.cpp
@@ -309,7 +309,8 @@ int main(int argc, char **argv)
{
const char *highDpiEnvironmentVariable = setHighDpiEnvironmentVariable();
- QLoggingCategory::setFilterRules(QLatin1String("qtc.*.debug=false"));
+ QLoggingCategory::setFilterRules(QLatin1String("qtc.*.debug=false\nqtc.*.info=false"));
+
#ifdef Q_OS_MAC
// increase the number of file that can be opened in Qt Creator.
struct rlimit rl;