summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/libraries/wasi-nn/src/utils/logger.h
blob: a196429a07941d050d98b6c8fd568df23705364d (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

#ifndef WASI_NN_LOGGER_H
#define WASI_NN_LOGGER_H

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

#define __FILENAME__ \
    (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)

/* Disable a level by removing the define */
#ifndef NN_LOG_LEVEL
/*
    0 -> debug, info, warn, err
    1 -> info, warn, err
    2 -> warn, err
    3 -> err
    4 -> NO LOGS
*/
#define NN_LOG_LEVEL 0
#endif

// Definition of the levels
#if NN_LOG_LEVEL <= 3
#define NN_ERR_PRINTF(fmt, ...)                                              \
    do {                                                                     \
        printf("[%s:%d ERROR] " fmt, __FILENAME__, __LINE__, ##__VA_ARGS__); \
        printf("\n");                                                        \
        fflush(stdout);                                                      \
    } while (0)
#else
#define NN_ERR_PRINTF(fmt, ...)
#endif
#if NN_LOG_LEVEL <= 2
#define NN_WARN_PRINTF(fmt, ...)                                               \
    do {                                                                       \
        printf("[%s:%d WARNING] " fmt, __FILENAME__, __LINE__, ##__VA_ARGS__); \
        printf("\n");                                                          \
        fflush(stdout);                                                        \
    } while (0)
#else
#define NN_WARN_PRINTF(fmt, ...)
#endif
#if NN_LOG_LEVEL <= 1
#define NN_INFO_PRINTF(fmt, ...)                                            \
    do {                                                                    \
        printf("[%s:%d INFO] " fmt, __FILENAME__, __LINE__, ##__VA_ARGS__); \
        printf("\n");                                                       \
        fflush(stdout);                                                     \
    } while (0)
#else
#define NN_INFO_PRINTF(fmt, ...)
#endif
#if NN_LOG_LEVEL <= 0
#define NN_DBG_PRINTF(fmt, ...)                                              \
    do {                                                                     \
        printf("[%s:%d DEBUG] " fmt, __FILENAME__, __LINE__, ##__VA_ARGS__); \
        printf("\n");                                                        \
        fflush(stdout);                                                      \
    } while (0)
#else
#define NN_DBG_PRINTF(fmt, ...)
#endif

#endif