1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-03-09 23:38:56 +00:00

Parse text log level

closes #42
This commit is contained in:
albfan 2015-08-22 11:07:13 +02:00
parent 73adee82bf
commit 117ed2071b
8 changed files with 36 additions and 34 deletions

View file

@ -27,6 +27,7 @@
#include <sys/types.h>
#include <systemd/sd-bus.h>
#include "shl_dlist.h"
#include "shl_log.h"
#ifndef CTL_CTL_H
#define CTL_CTL_H
@ -123,34 +124,6 @@ extern int cli_max_sev;
void cli_printv(const char *fmt, va_list args);
void cli_printf(const char *fmt, ...);
enum {
#ifndef LOG_FATAL
LOG_FATAL = 0,
#endif
#ifndef LOG_ALERT
LOG_ALERT = 1,
#endif
#ifndef LOG_CRITICAL
LOG_CRITICAL = 2,
#endif
#ifndef LOG_ERROR
LOG_ERROR = 3,
#endif
#ifndef LOG_WARNING
LOG_WARNING = 4,
#endif
#ifndef LOG_NOTICE
LOG_NOTICE = 5,
#endif
#ifndef LOG_INFO
LOG_INFO = 6,
#endif
#ifndef LOG_DEBUG
LOG_DEBUG = 7,
#endif
LOG_SEV_NUM,
};
#define cli_log(_fmt, ...) \
cli_printf(_fmt "\n", ##__VA_ARGS__)
#define cli_log_fn(_fmt, ...) \