log.h 203 B

12345678910111213
  1. #ifndef TOOLBOX_LOG_H
  2. #define TOOLBOX_LOG_H
  3. #include <stdio.h>
  4. #ifndef ERRFILE
  5. #define ERRFILE stdout
  6. #endif
  7. #define LOG_ERROR(TXT) \
  8. fprintf(ERRFILE, "[ERROR] %s: %s", __FILE__, TXT) \
  9. #endif