| 12345678910111213141516 |
- #ifndef TOOLBOX_LOG_H
- #define TOOLBOX_LOG_H
- #include <stdio.h>
- #ifndef ERRFILE
- #define ERRFILE stdout
- #endif
- #define LOG_ERROR(TXT) \
- fprintf(stderr, "[ERROR] %s: %s", __FILE__, TXT) \
- #define LOG_INFO(TXT) \
- fprintf(stdout, "[INFO] %s: %s", __FILE__, TXT) \
- #endif
|