Go to the source code of this file.
Namespaces | |
namespace | toolbox |
Defines | |
#define | LOG_DEBUG 1 |
As a log type: Message for debugging only (it is in no case a problem, and is only interesting for the owning developer). As a log level: Show all messages of debug type or higher. | |
#define | LOG_ERROR 4 |
As a log type: Message is an error (it is in every case a problem). As a log level: Show all messages of error type or higher. | |
#define | LOG_EXCEPTION 5 |
As a log type: Message is an exception (it is in every case a problem). As a log level: Show all messages of exception type or higher. | |
#define | LOG_FATAL 6 |
As a log type: Message is fatal (it is a problem that causes program stop). As a log level: Show all messages of fatal type or higher. | |
#define | LOG_INFO 2 |
As a log type: Message is a note (it is in no case a problem, but may be interesting for all developers). As a log level: Show all messages of note type or higher. | |
#define | LOG_NEVER 127 |
Log level: Show no messages (logger is off). | |
#define | LOG_SESSIONSEPARATOR "\n-------------------------------------------------------------------------------\n" |
The logging session separator. | |
#define | LOG_WARN 3 |
As a log type: Message is a warning (situation may become a problem). As a log level: Show all messages of warning type or higher. | |
#define | LOGPRINTF0(type, format) |
Macro for the debug logging with 0 parameters. | |
#define | LOGPRINTF1(type, format, p1) |
Macro for the debug logging with 1 parameter. | |
#define | LOGPRINTF10(type, format, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10) |
Macro for the debug logging with 10 parameters. | |
#define | LOGPRINTF2(type, format, p1, p2) |
Macro for the debug logging with 2 parameters. | |
#define | LOGPRINTF3(type, format, p1, p2, p3) |
Macro for the debug logging with 3 parameters. | |
#define | LOGPRINTF4(type, format, p1, p2, p3, p4) |
Macro for the debug logging with 4 parameters. | |
#define | LOGPRINTF5(type, format, p1, p2, p3, p4, p5) |
Macro for the debug logging with 5 parameters. | |
#define | LOGPRINTF6(type, format, p1, p2, p3, p4, p5, p6) |
Macro for the debug logging with 6 parameters. | |
#define | LOGPRINTF7(type, format, p1, p2, p3, p4, p5, p6, p7) |
Macro for the debug logging with 7 parameters. | |
#define | LOGPRINTF8(type, format, p1, p2, p3, p4, p5, p6, p7, p8) |
Macro for the debug logging with 8 parameters. | |
#define | LOGPRINTF9(type, format, p1, p2, p3, p4, p5, p6, p7, p8, p9) |
Macro for the debug logging with 9 parameters. |
|
As a log type: Message for debugging only (it is in no case a problem, and is only interesting for the owning developer).
|
|
As a log type: Message is an error (it is in every case a problem).
|
|
As a log type: Message is an exception (it is in every case a problem).
|
|
As a log type: Message is fatal (it is a problem that causes program stop).
|
|
As a log type: Message is a note (it is in no case a problem, but may be interesting for all developers).
|
|
Log level: Show no messages (logger is off).
|
|
The logging session separator.
|
|
As a log type: Message is a warning (situation may become a problem).
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format)) \ : 0)
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format), \ (p1)) : 0)
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format), \ (p1), (p2), (p3), (p4), (p5), (p6), (p7), (p8), (p9), (p10)) : 0)
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format), \ (p1), (p2)) : 0)
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format), \ (p1), (p2), (p3)) : 0)
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format), \ (p1), (p2), (p3), (p4)) : 0)
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format), \ (p1), (p2), (p3), (p4), (p5)) : 0)
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format), \ (p1), (p2), (p3), (p4), (p5), (p6)) : 0)
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format), \ (p1), (p2), (p3), (p4), (p5), (p6), (p7)) : 0)
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format), \ (p1), (p2), (p3), (p4), (p5), (p6), (p7), (p8)) : 0)
|
|
Value: (Logger::Get()!=NULL ? Logger::Get()->Printf(__FILE__, __LINE__, (type), (format), \ (p1), (p2), (p3), (p4), (p5), (p6), (p7), (p8), (p9)) : 0)
|