|
GraphicsAPI_2020C
|
CPP-API: Empty logging implementation. More...
#include <NullLogger.hpp>


Public Member Functions | |
| void | OnDebug (const char *message) |
| Logs a debug message. | |
| void | OnInfo (const char *message) |
| Logs an info message. | |
| void | OnWarn (const char *message) |
| Logs a warning message. | |
| void | OnError (const char *message) |
| Logs an error message. | |
| bool | attachStream (LogStream *pStream, unsigned int severity) |
| Detach a still attached stream from logger. | |
| bool | detatchStream (LogStream *pStream, unsigned int severity) |
| Detach a still attached stream from logger. | |
Public Member Functions inherited from Assimp::Logger | |
| virtual | ~Logger () |
| Virtual destructor. | |
| void | debug (const char *message) |
| Writes a debug message. More... | |
| void | debug (const std::string &message) |
| void | info (const char *message) |
| Writes a info message. More... | |
| void | info (const std::string &message) |
| void | warn (const char *message) |
| Writes a warning message. More... | |
| void | warn (const std::string &message) |
| void | error (const char *message) |
| Writes an error message. More... | |
| void | error (const std::string &message) |
| void | setLogSeverity (LogSeverity log_severity) |
| Set a new log severity. More... | |
| LogSeverity | getLogSeverity () const |
| Get the current log severity. | |
Additional Inherited Members | |
Public Types inherited from Assimp::Logger | |
| enum | LogSeverity { NORMAL, VERBOSE } |
| Log severity to describe the granularity of logging. More... | |
| enum | ErrorSeverity { Debugging = 1, Info = 2, Warn = 4, Err = 8 } |
| Description for severity of a log message. More... | |
Protected Member Functions inherited from Assimp::Logger | |
| Logger () | |
| Default constructor. | |
| Logger (LogSeverity severity) | |
| Construction with a given log severity. | |
Protected Attributes inherited from Assimp::Logger | |
| LogSeverity | m_Severity |
| Logger severity. | |
CPP-API: Empty logging implementation.
Does nothing! Used by default if the application hasn't requested a custom logger via #DefaultLogger::set() or #DefaultLogger::create();
1.8.13