DayZ 1.24
Loading...
Searching...
No Matches
Debug.c
Go to the documentation of this file.
1void 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
10void 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
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}
void syncDebugPrint(string s)
Definition Debug.c:1
void inventoryDebugPrint(string s)
Definition Debug.c:19
void actionDebugPrint(string s)
Definition Debug.c:10
proto void Print(void var)
Prints content of variable to console/log.
proto void PrintToRPT(void var)
Prints content of variable to RPT file (performance warning - each write means fflush!...