|
MF_API void MFDebug_Warn |
( |
int |
level, |
|
|
const char * |
pWarningMessage |
|
) |
| |
Notifies the user of a runtime warning. The warning level can be controlled at runtime to restrict unwanted warnings.
- Parameters
-
level | Warning level. |
pWarningMessage | Message to log to the debugger. |
- Returns
- None.
Valid Warning levels:
- 0 - Warning will be always be displayed. For critical warnings.
- 1 - Critical Warning. Application will probably not run correctly.
- 2 - Non-Critical Warning. Application will run, but may perform incorrectly.
- 3 - General Warning. For general information feedback.
- 4 - Low Warning. For small generally unimportant details.
|