Go to the source code of this file.
◆ ENABLE_LOGGING
◆ fsLogError
| #define fsLogError |
( |
| pFmtStr, |
|
|
| ... ) |
Value:{ \
fsStr logStr(
"FISSION_ERROR(" ); logStr += __FUNCTION__; logStr +=
") "; \
fsCLogMsg("\n"); \
fsCLogError(logStr); \
fsCLogMsg("\n"); \
}
fsStr variableArguementListCompound(const fsChar *const pFormat,...)
Definition fsAssert.cpp:5
◆ fsLogFlushMsg
| #define fsLogFlushMsg |
( |
| pFmtStr, |
|
|
| ... ) |
Value:{ \
fsStr logStr(
"FISSION_LOG(" ); logStr += __FUNCTION__; logStr +=
") "; \
fsCLogError(logStr); \
}
◆ fsLogMsg
| #define fsLogMsg |
( |
| pFmtStr, |
|
|
| ... ) |
Value:{ \
fsStr logStr(
"FISSION_LOG(" ); logStr += __FUNCTION__; logStr +=
") "; \
fsCLogMsg(logStr); \
}