fix pkinit => pushd epan/dissectors/asn1/pkinit && make && popd
[metze/wireshark/wip.git] / log.h
1 /* log.h
2  * log output definitions
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10
11 #ifndef __LOG_H__
12 #define __LOG_H__
13
14 /* capture domain (except for capture child, see below) */
15 #define LOG_DOMAIN_CAPTURE          "Capture"
16
17 /* capture child domain (the capture child might also contain file domain messages!) */
18 #define LOG_DOMAIN_CAPTURE_CHILD  "CaptureChild"
19
20 /* main domain */
21 #define LOG_DOMAIN_MAIN           "Main"
22
23 /* enable very verbose capture log debug output */
24 /* (might slightly degrade performance) */
25 /*#define LOG_CAPTURE_VERBOSE*/
26
27 #endif
28
29 /*
30  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
31  *
32  * Local variables:
33  * c-basic-offset: 4
34  * tab-width: 8
35  * indent-tabs-mode: nil
36  * End:
37  *
38  * vi: set shiftwidth=4 tabstop=8 expandtab:
39  * :indentSize=4:tabSize=8:noTabs=true:
40  */