summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/src_corelib_io_qloggingcategory.cpp
blob: 0a7a718e3100199f58fde5a53a223fcfaa6cab06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
    <category>[.<type>] = true|false
//! [0]

//! [1]
    QLoggingCategory::setFilterRules("*.debug=false\n"
                                     "driver.usb.debug=true");
//! [1]

//! [2]
    [Rules]
    *.debug=false
    driver.usb.debug=true
//! [2]

//! [3]
    QT_LOGGING_RULES="*.debug=false;driver.usb.debug=true"
//! [3]