1234567891011121314151617181920212223242526272829303132 |
- void syncDebugPrint (string s)
- {
- #ifdef LOG_TO_RPT
- PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
- #endif
-
- #ifdef LOG_TO_SCRIPT
- Print(string.Format("%1", s));
- #endif
- }
- void actionDebugPrint (string s)
- {
- #ifdef LOG_TO_RPT
- PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
- #endif
-
- #ifdef LOG_TO_SCRIPT
- Print(string.Format("%1", s));
- #endif
- }
- void inventoryDebugPrint (string s)
- {
- #ifdef LOG_TO_RPT
- PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
- #endif
-
- #ifdef LOG_TO_SCRIPT
- Print(string.Format("%1", s));
- #endif
- }
|