Loading...
Searching...
No Matches
Go to the documentation of this file.
14#if defined fsFRAMEWORK_CX
16#elif defined fsFRAMEWORK_AX
18#elif defined fsFRAMEWORK_MG
20#elif defined fsFRAMEWORK_RL
22#elif defined fsFRAMEWORK_BF
25 #error Unhandled platform.
34 #define fsLogMsg( pFmtStr, ... ) \
36 fsStr logStr( "FISSION_LOG(" ); logStr += __FUNCTION__; logStr += ") "; \
37 logStr += variableArguementListCompound(pFmtStr, ##__VA_ARGS__);\
43 #define fsLogMsg( ... )
50 #define fsLogError( pFmtStr, ... ) \
52 fsStr logStr( "FISSION_ERROR(" ); logStr += __FUNCTION__; logStr += ") "; \
53 logStr += variableArguementListCompound(pFmtStr, ##__VA_ARGS__);\
54 fsCLogError(logStr); \
59 #define fsLogError( pFmtStr, ... ) \
61 fsStr logStr( "FISSION_ERROR(" ); logStr += __FUNCTION__; logStr += ") "; \
62 logStr += variableArguementListCompound(pFmtStr, ##__VA_ARGS__);\
63 fsCLogError(logStr); \
70#define fsLogFlushMsg( pFmtStr, ... ) \
72 fsStr logStr( "FISSION_LOG(" ); logStr += __FUNCTION__; logStr += ") "; \
73 logStr += variableArguementListCompound(pFmtStr, ##__VA_ARGS__);\
74 fsCLogMsgFlush(logStr); \