debug.h 450 B

123456789101112131415161718192021
  1. //
  2. // debug.h
  3. // electra1131
  4. //
  5. // Created by Pwn20wnd on 7/3/18.
  6. // Copyright © 2018 Electra Team. All rights reserved.
  7. //
  8. #ifndef debug_h
  9. #define debug_h
  10. #include <stdio.h>
  11. #define RAWLOG(fmt, args...) fprintf(stderr, fmt, ##args);
  12. #define INFO(fmt, args...) RAWLOG("[INF] " fmt, ##args);
  13. #undef DEBUG
  14. #define DEBUG(fmt, args...) RAWLOG("[DBG] " fmt, ##args);
  15. #define ERROR(fmt, args...) RAWLOG("[ERR] " fmt, ##args);
  16. #endif /* debug_h */