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

void actionDebugPrint (string s)
{
#ifdef INV_DEBUG
	PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
#else
	Print("" + s); // comment/uncomment to hide/see debug logs
#endif
}

void inventoryDebugPrint (string s)
{
#ifdef INV_DEBUG
	PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
#else
	//Print("" + s); // comment/uncomment to hide/see debug logs
#endif
}