Commit 5d2c59e3 authored by Max Kellermann's avatar Max Kellermann

log: use the GLogLevelFlags type

Declare log_threshold as GLogLevelFlags.
parent 2c5885e9
......@@ -38,7 +38,7 @@
#define LOG_DATE_BUF_SIZE 16
#define LOG_DATE_LEN (LOG_DATE_BUF_SIZE - 1)
static unsigned int log_threshold = G_LOG_LEVEL_MESSAGE;
static GLogLevelFlags log_threshold = G_LOG_LEVEL_MESSAGE;
static const char *log_charset;
......@@ -70,7 +70,7 @@ mpd_log_func(const gchar *log_domain,
{
char *converted;
if (log_level > (int)log_threshold)
if (log_level > log_threshold)
return;
if (log_charset != NULL) {
......@@ -156,7 +156,7 @@ void setup_log_output(bool use_stdout)
#define log_func(func,level) \
G_GNUC_PRINTF(1, 2) void func(const char *fmt, ...) \
{ \
if (level <= (int)log_threshold) { \
if (level <= log_threshold) { \
va_list args; \
va_start(args, fmt); \
g_logv(NULL, level, fmt, args); \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment