Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
debug.c
Go to the documentation of this file.
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 
10 void actionDebugPrint (string s)
11 {
12 #ifdef INV_DEBUG
13  PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
14 #else
15  Print("" + s); // comment/uncomment to hide/see debug logs
16 #endif
17 }
18 
19 void inventoryDebugPrint (string s)
20 {
21 #ifdef INV_DEBUG
22  PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
23 #else
24  //Print("" + s); // comment/uncomment to hide/see debug logs
25 #endif
26 }
actionDebugPrint
void actionDebugPrint(string s)
Definition: debug.c:10
Print
proto void Print(void var)
Prints content of variable to console/log.
inventoryDebugPrint
void inventoryDebugPrint(string s)
Definition: debug.c:19
PrintToRPT
proto void PrintToRPT(void var)
Prints content of variable to RPT file (performance warning - each write means fflush!...
syncDebugPrint
void syncDebugPrint(string s)
Definition: debug.c:1