| OLD | NEW |
| (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_ | |
| OLD | NEW |