diff options
Diffstat (limited to 'src/lib/log/log.h')
-rw-r--r-- | src/lib/log/log.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/log/log.h b/src/lib/log/log.h index 493409756f..c8820ee037 100644 --- a/src/lib/log/log.h +++ b/src/lib/log/log.h @@ -107,8 +107,12 @@ #define LD_CONSDIFF (1u<<24) /** Denial of Service mitigation. */ #define LD_DOS (1u<<25) +/** Processes */ +#define LD_PROCESS (1u<<26) +/** Pluggable Transports. */ +#define LD_PT (1u<<27) /** Number of logging domains in the code. */ -#define N_LOGGING_DOMAINS 26 +#define N_LOGGING_DOMAINS 28 /** This log message is not safe to send to a callback-based logger * immediately. Used as a flag, not a log domain. */ |