|
nCine 2025.12.r528-f126e49
A cross-platform 2D game engine
|
A fake logger which doesn't log anything. More...
#include <ILogger.h>


Public Member Functions | |
| unsigned int | write (LogLevel level, const char *fmt,...) override |
| Logs a message with a specified level of severity. | |
| unsigned int | consumeQueue () override |
| Consumes the queue of entries from all threads (called by the main thread only) | |
| const char * | logString () const override |
| Returns the log string with all the recorded log entries. | |
| void | clearLogString () override |
| Clears the entries from the log string. | |
| unsigned int | logStringLength () const override |
| Returns the length of the log string. | |
| unsigned int | logStringCapacity () const override |
| Returns the capacity of the log string. | |
Additional Inherited Members | |
Public Types inherited from ncine::ILogger | |
| enum class | LogLevel { UNKNOWN = -1 , OFF = 0 , VERBOSE , DEBUG , INFO , WARN , ERROR , FATAL } |
| Log levels, from less to more severe. | |
A fake logger which doesn't log anything.
|
inlineoverridevirtual |
Clears the entries from the log string.
Implements ncine::ILogger.
|
inlineoverridevirtual |
Consumes the queue of entries from all threads (called by the main thread only)
Implements ncine::ILogger.
|
inlineoverridevirtual |
Returns the log string with all the recorded log entries.
Implements ncine::ILogger.
|
inlineoverridevirtual |
Returns the capacity of the log string.
Implements ncine::ILogger.
|
inlineoverridevirtual |
Returns the length of the log string.
Implements ncine::ILogger.
|
inlineoverridevirtual |
Logs a message with a specified level of severity.
Implements ncine::ILogger.