diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2018-10-12 09:33:30 +0300 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2018-10-13 16:36:58 +0000 |
commit | bdc2b4b59f982eb0a92a19b86b374a669036c913 (patch) | |
tree | 2b2b10a01f97c0cfef87995bc990026bdc694964 /src/plugins/vcsbase | |
parent | a27d4e9455fd0bd865a5b72f2ea3636ab5dfed6e (diff) | |
download | qt-creator-bdc2b4b59f982eb0a92a19b86b374a669036c913.tar.gz |
Remove hard-coded disabling of debug logs
Instead, set the default level of all logs to QtWarningMsg.
The call to setFilterRules overrides the user preferences in qtlogging.ini.
Change-Id: Id5f6cd550d14ff7f45ae04c5d3110e0bafb0f072
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/vcsbase')
-rw-r--r-- | src/plugins/vcsbase/vcsbaseplugin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/vcsbase/vcsbaseplugin.cpp b/src/plugins/vcsbase/vcsbaseplugin.cpp index af2c5e753d..2d70846c34 100644 --- a/src/plugins/vcsbase/vcsbaseplugin.cpp +++ b/src/plugins/vcsbase/vcsbaseplugin.cpp @@ -59,9 +59,9 @@ using namespace Utils; using namespace ProjectExplorer; namespace { -Q_LOGGING_CATEGORY(baseLog, "qtc.vcs.base") -Q_LOGGING_CATEGORY(findRepoLog, "qtc.vcs.find-repo") -Q_LOGGING_CATEGORY(stateLog, "qtc.vcs.state") +Q_LOGGING_CATEGORY(baseLog, "qtc.vcs.base", QtWarningMsg) +Q_LOGGING_CATEGORY(findRepoLog, "qtc.vcs.find-repo", QtWarningMsg) +Q_LOGGING_CATEGORY(stateLog, "qtc.vcs.state", QtWarningMsg) } /*! |