1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/**
* @file log_rules.h
* prototypes for log_rules.cpp
*
* @author Guy Maurel
* @license GPL v2+
*/
#ifndef LOG_RULES_H_INCLUDED
#define LOG_RULES_H_INCLUDED
#include "chunk_list.h"
#include "uncrustify.h"
using namespace uncrustify;
#if defined DEBUG
#define log_rule(rule) \
log_rule2(__func__, __LINE__, (rule), first, second); \
log_rule4((rule), first)
#else
#define log_rule(rule) \
log_rule2(__func__, __LINE__, (rule), first, second)
#endif
// if you need more debug informations, remove the comment at the next line
#define SUPER_LOG 1
#ifdef SUPER_LOG
#define log_rule_B(rule) \
log_rule3(LCURRENT, __func__, __LINE__, (rule))
#else
#define log_rule_B(rule) \
log_rule3(LCURRENT, __func__, (rule))
#endif
void log_rule2(const char *func, size_t line, const char *rule, chunk_t *first, chunk_t *second);
#ifdef SUPER_LOG
void log_rule3(log_sev_t sev, const char *func, size_t line, const char *rule);
#else
void log_rule3(log_sev_t sev, const char *func, const char *rule);
#endif
void log_rule4(const char *rule, chunk_t *first);
#endif /* LOG_RULES_H_INCLUDED */
|