File: log.c

package info (click to toggle)
buffybox 3.4.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 108,056 kB
  • sloc: ansic: 357,060; cpp: 42,613; python: 10,534; xml: 1,214; sh: 823; asm: 665; ruby: 487; makefile: 66
file content (48 lines) | stat: -rw-r--r-- 810 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
 * Copyright 2021 Johannes Marbach
 * SPDX-License-Identifier: GPL-3.0-or-later
 */


#include "log.h"

#include <stdarg.h>
#include <stdio.h>
#include <string.h>


/**
 * Static variables
 */

static bbx_log_level log_level = BBX_LOG_LEVEL_ERROR;


/**
 * Public functions
 */

void bbx_log_set_level(bbx_log_level level) {
    log_level = level;
}

void bbx_log(bbx_log_level level, const char *format, ...) {
    if (level > log_level) {
        return;
    }

    va_list args;
    va_start(args, format);
    vfprintf(stderr, format, args);
    va_end(args);

    size_t l = strlen(format);
    if (l > 0 && format[l - 1] != '\n') {
        fprintf(stderr, "\n");
    }
}

void bbx_log_print_cb(lv_log_level_t level, const char *msg) {
    LV_UNUSED(level);
    bbx_log(BBX_LOG_LEVEL_VERBOSE, msg);
}