summaryrefslogtreecommitdiff
path: root/include/rune_logging.h
blob: a0b9e293478a189378d1c8e00199f23a53076a25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef RUNE_LOGGING_H
#define RUNE_LOGGING_H

#include <rune_types.h>

enum log_level {
        LOG_FATAL,
        LOG_ERROR,
        LOG_WARN,
        LOG_INFO,
        LOG_DEBUG
};

void log_output(int level, const char *fmt, ...);

#endif