6 /* Returns true if the given priority is enabled for the default
7 * category. Priority is xbt_log_priority_SUFFIX, where SUFFIX may
8 * be: trace, debug, verbose, info, warning, error, critical.
10 #define LOG_ISENABLED(priority) \
11 (_XBT_LOG_ISENABLEDV((*_XBT_LOGV(default)), (priority)))
13 /* Returns c-string "s" if n > 1, empty string "" otherwise. */
14 #define ESSE(n) ((n) > 1 ? misc::str_esse : misc::str_nil)
16 extern const char str_esse[];
17 extern const char str_nil[];