Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/plugin/PluginDebugMacros.h

Issue 5747779603267584: Issue #1234 - Rework strings in debug facility (Closed)
Patch Set: typo fix Created March 5, 2015, 12:43 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/plugin/PluginDebug.cpp ('k') | src/plugin/PluginFilter.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2015 Eyeo GmbH
4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation.
8 *
9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #ifndef _PLUGIN_DEBUG_MACROS_H_
19 #define _PLUGIN_DEBUG_MACROS_H_
20
21
22 #undef DEBUG_INFO
23 #undef DEBUG_GENERAL
24 #undef DEBUG_BLOCKER
25 #undef DEBUG_PARSER
26 #undef DEBUG_FILTER
27 #undef DEBUG_SETTINGS
28 #undef DEBUG_THREAD
29 #undef DEBUG_NAVI
30 #undef DEBUG_CHECKSUM
31 #undef DEBUG_DICTIONARY
32 #undef DEBUG_ERROR
33 #undef DEBUG_ERROR_CODE
34 #undef DEBUG_ERROR_CODE_EX
35 #undef DEBUG_ERROR_LOG
36 #undef DEBUG_SELFTEST
37 #undef DEBUG_INI
38 #undef DEBUG_MUTEX
39 #undef DEBUG_HIDE_EL
40 #undef DEBUG_WHITELIST
41 #undef DEBUG
42
43 #define DEBUG_GENERAL(x)
44 #define DEBUG_BLOCKER(x)
45 #define DEBUG_PARSER(x)
46 #define DEBUG_FILTER(x)
47 #define DEBUG_SETTINGS(x)
48 #define DEBUG_THREAD(x)
49 #define DEBUG_NAVI(x)
50 #define DEBUG_CHECKSUM(x)
51 #define DEBUG_DICTIONARY(x)
52 #define DEBUG_ERROR(x)
53 #define DEBUG_ERROR_CODE(err, x)
54 #define DEBUG_ERROR_CODE_EX(err, x, process, thread)
55 #define DEBUG_ERROR_LOG(err, id, subid, description)
56 #define DEBUG_SELFTEST(x)
57 #define DEBUG_INI(x)
58 #define DEBUG_MUTEX(x)
59 #define DEBUG_HIDE_EL(x)
60 #define DEBUG_WHITELIST(x)
61 #define DEBUG(x)
62
63
64 #endif // _PLUGIN_DEBUG_MACROS_H_
OLDNEW
« no previous file with comments | « src/plugin/PluginDebug.cpp ('k') | src/plugin/PluginFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld