Add dzlog_level_enabled()

This commit is contained in:
Daniel Ottiger 2025-03-10 17:31:29 +01:00 committed by deemar
parent 2a168ab859
commit 796ac2ce52
2 changed files with 6 additions and 0 deletions

View File

@ -1205,4 +1205,9 @@ int zlog_level_enabled(zlog_category_t *category, const int level)
return enable;
}
int dzlog_level_enabled(const int level)
{
return zlog_level_enabled(zlog_default_category, level);
}
const char *zlog_version(void) { return ZLOG_VERSION; }

View File

@ -68,6 +68,7 @@ void hzlog(zlog_category_t * category,
int dzlog_init(const char *confpath, const char *cname);
int dzlog_set_category(const char *cname);
int dzlog_level_enabled(const int level);
void dzlog(const char *file, size_t filelen,
const char *func, size_t funclen,