STASIS
A pipeline delivery generator
Loading...
Searching...
No Matches
src
lib
core
include
core_message.h
1
2
#ifndef STASIS_CORE_MESSAGE_H
3
#define STASIS_CORE_MESSAGE_H
4
5
#define SYSERROR(FMT, ...) do { \
6
log_print_error(EXECPOINT, (FMT), ##__VA_ARGS__); \
7
} while (0)
8
9
#define SYSWARN(FMT, ...) do { \
10
log_print_warning(EXECPOINT, (FMT), ##__VA_ARGS__); \
11
} while (0)
12
13
#define SYSINFO(FMT, ...) do { \
14
log_print_info(EXECPOINT, (FMT), ##__VA_ARGS__); \
15
} while (0)
16
17
#define SYSDEBUG(FMT, ...) do { \
18
log_print_debug(EXECPOINT, (FMT), ##__VA_ARGS__); \
19
} while (0)
20
21
#endif
//STASIS_CORE_MESSAGE_H
Generated by
1.13.2