
This header declares the PG_LogConsole namespace and all functions for log processing.
Namespaces | |
| namespace | PG_LogConsole |
Defines | |
| #define | PG_LOGMTH_STDOUT 1 |
| Logmethod: STDOUT. | |
| #define | PG_LOGMTH_STDERR 2 |
| Logmethod: STDERR. | |
| #define | PG_LOGMTH_CONSOLE 4 |
| Logmethod: CONSOLE. | |
Enumerations | |
| enum | PG_LOG_LEVEL { PG_LOG_NONE, PG_LOG_ERR, PG_LOG_WRN, PG_LOG_MSG, PG_LOG_DBG } |
| ParaGUI logging level. More... | |
Functions | |
| void | PG_Log (PG_LOG_LEVEL id, const char *Text,...) |
| Log a message. | |
| void | PG_LogMSG (const char *fmt,...) |
| Log a message with log level "message". | |
| void | PG_LogERR (const char *fmt,...) |
| Log a message with log level "error". | |
| void | PG_LogWRN (const char *fmt,...) |
| Log a message with log level "warning". | |
| void | PG_LogDBG (const char *fmt,...) |
| Log a message with log level "debug". | |
|
|
Logmethod: CONSOLE. Send all log messages to the console window. |
|
|
Logmethod: STDERR. Send all log messages to stderr. |
|
|
Logmethod: STDOUT. Send all log messages to stdout. |
|
|
ParaGUI logging level.
|
|
||||||||||||||||
|
Log a message.
|
|
||||||||||||
|
Log a message with log level "debug".
|
|
||||||||||||
|
Log a message with log level "error".
|
|
||||||||||||
|
Log a message with log level "message".
|
|
||||||||||||
|
Log a message with log level "warning".
|