summaryrefslogtreecommitdiff
path: root/debug.h
blob: 8c226fdbc103e7bb2e09deef6cf469ec6ceb8c4a (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
/*
 * Copyright 2013 Red Hat, Inc. and/or its affiliates.
 *
 * Licensed under the GNU General Public License, version 2 or any
 * later version. See the file COPYING in the top-level directory of
 * this distribution or http://www.gnu.org/licenses/gpl-2.0.txt.
 */
#ifndef __DEBUG_H__
#define __DEBUG_H__

void spicex_log(unsigned int type, const char *function, const char *format, ...);
void spicex_init_logger(void);
void spicex_log_cleanup(void);

#ifdef WIN32
#define snprintf _snprintf
#endif

#define ON_PANIC() ::abort()

#ifdef SPICEX_DEBUG

#define ASSERTBREAK DebugBreak()

#define ASSERT(x) if (!(x)) {                               \
    printf("%s: ASSERT %s failed\n", __FUNCTION__, #x);     \
    ASSERTBREAK;                                            \
}

#else

#define ASSERT(cond)

#endif

enum {
  LOG_FATAL = 1,
  LOG_ERROR,
  LOG_WARN,
  LOG_INFO,
  LOG_DEBUG,
};

#define LOG(type, format, ...) spicex_log(type, __FUNCTION__, format, ## __VA_ARGS__)

#define LOG_INFO(format, ...) LOG(LOG_INFO, format, ## __VA_ARGS__)
#define LOG_WARN(format, ...) LOG(LOG_WARN, format, ## __VA_ARGS__)
#define LOG_ERROR(format, ...) LOG(LOG_ERROR, format, ## __VA_ARGS__)

#define DBG(level, format, ...)                         \
        LOG(LOG_DEBUG + level, format, ## __VA_ARGS__)



#endif // __DEBUG_H__