|
| #define | log_debug(...) (log_message(_LOG_LEVEL_DEBUG, __FILE__, __LINE__, __VA_ARGS__)) |
| |
| #define | log_info(...) (log_message(_LOG_LEVEL_INFO, __FILE__, __LINE__, __VA_ARGS__)) |
| |
| #define | log_warning(...) (log_message(_LOG_LEVEL_WARNING, __FILE__, __LINE__, __VA_ARGS__)) |
| |
| #define | log_error(...) (log_message(_LOG_LEVEL_ERROR, __FILE__, __LINE__, __VA_ARGS__)) |
| |
These macros prints the given message to the standard output, including the file and line of the caller.
◆ log_debug
◆ log_error
◆ log_info
◆ log_warning