Move declaration of LD_NO_MESG to make conflict more apparent.

This commit is contained in:
Nick Mathewson 2019-07-08 13:00:31 -04:00
parent 5e16601000
commit d972f29d8d

View File

@ -118,6 +118,11 @@
#define LD_MESG (1u<<29)
#define N_LOGGING_DOMAINS 30
#ifdef TOR_UNIT_TESTS
/** This log message should not be intercepted by mock_saving_logv */
#define LD_NO_MOCK (1u<<29)
#endif
/** This log message is not safe to send to a callback-based logger
* immediately. Used as a flag, not a log domain. */
#define LD_NOCB (1u<<31)
@ -125,11 +130,6 @@
* would. Used as a flag, not a log domain. */
#define LD_NOFUNCNAME (1u<<30)
#ifdef TOR_UNIT_TESTS
/** This log message should not be intercepted by mock_saving_logv */
#define LD_NO_MOCK (1u<<29)
#endif
/** Mask of zero or more log domains, OR'd together. */
typedef uint32_t log_domain_mask_t;