|
#define | MSG_LVL(lvl, x) |
| Neat CPU-conserving logging macros. Use by preference!
|
|
#define | MSG_TRACE(x) MSG_LVL(Log::TRACE, x) |
| Lowest-level, most verbose messaging, using MSG_LVL.
|
|
#define | MSG_DEBUG(x) MSG_LVL(Log::DEBUG, x) |
| Debug messaging, not enabled by default, using MSG_LVL.
|
|
#define | MSG_INFO(x) MSG_LVL(Log::INFO, x) |
| Key-information messging, enabled by default, using MSG_LVL.
|
|
#define | MSG_WARNING(x) MSG_LVL(Log::WARNING, x) |
| Warning messages for non-fatal bad things, using MSG_LVL.
|
|
#define | MSG_ERROR(x) MSG_LVL(Log::ERROR, x) |
| Highest level messaging for serious problems, using MSG_LVL.
|
|