1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-02-12 17:01:55 +00:00

miraclectl: set default log-level to NOTICE

We currently suppress all log-messages except FATAL, which is not really
what we want. Initialize the log-level to NOTICE like the default for
shl_log is, too.

Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
This commit is contained in:
David Herrmann 2014-02-11 14:06:23 +01:00
parent 650920082c
commit 1c470e46a8

View file

@ -53,7 +53,7 @@ static sd_event *cli_event;
static sd_event_source *cli_sigs[_NSIG];
static sd_event_source *cli_stdin;
static bool cli_rl;
static int cli_max_sev;
static int cli_max_sev = LOG_NOTICE;
#define CLI_DEFAULT "\x1B[0m"
#define CLI_RED "\x1B[0;91m"