**
* Powrót prawdziwy jeżeli the kategoria notować wiadomość z priorytet @c
* LOG4C_PRIORITY_DEBUG.
*
* @param a_category the log4c_category_t przedmiot
* @returns Czy the kategoria notować.
**/
#if! definiować (_WIN32) &&! definiować (__HP_cc)
statyczny statyczny int log4c_category_is_debug_enabled (const log4c_category_t* a_category)
{
powrotny log4c_category_is_priority_enabled (a_category, LOG4C_PRIORITY_DEBUG);
}
#else
#define log4c_category_is_debug_enabled (a) \
(log4c_category_is_priority_enabled (a, LOG4C_PRIORITY_DEBUG))
#endif |