File size: 930 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 27 28 29 30 31 32 33 34 35 36 37 38 |
void wpnPrint (string s)
{
#ifdef WPN_DEBUG
PrintToRPT("" + s); // comment/uncomment to hide/see at least important info
#else
//Print("" + s); // comment/uncomment to hide/see at least important info
#endif
}
void wpnDebugPrint (string s)
{
#ifdef WPN_DEBUG
PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
#else
//Print("" + s); // comment/uncomment to hide/see debug logs
#endif
}
void wpnDebugSpam (string s)
{
#ifdef WPN_DEBUG_SPAM
PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
#else
//Print("" + s); // comment/uncomment to hide/see debug logs
#endif
}
void wpnDebugSpamALot (string s)
{
#ifdef WPN_DEBUG_SPAM_FREQ
PrintToRPT("" + s); // comment/uncomment to hide/see debug logs
#else
//Print("" + s); // comment/uncomment to hide/see debug logs
#endif
}
// @NOTE: to see output from FSM transitions, go to:
// 4_World/Entities/HFSMBase.c
// @see fsmDebugPrint @see fsmDebugSpam
|