debug.c 582 B

1234567891011121314151617181920212223242526
  1. void syncDebugPrint (string s)
  2. {
  3. #ifdef INV_DEBUG
  4. PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
  5. #else
  6. //Print("" + s); // comment/uncomment to hide/see debug logs
  7. #endif
  8. }
  9. void actionDebugPrint (string s)
  10. {
  11. #ifdef INV_DEBUG
  12. PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
  13. #else
  14. Print("" + s); // comment/uncomment to hide/see debug logs
  15. #endif
  16. }
  17. void inventoryDebugPrint (string s)
  18. {
  19. #ifdef INV_DEBUG
  20. PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
  21. #else
  22. //Print("" + s); // comment/uncomment to hide/see debug logs
  23. #endif
  24. }