 |
Irrlicht 3D Engine
|
|
Go to the documentation of this file.
5 #ifndef __I_LOGGER_H_INCLUDED__
6 #define __I_LOGGER_H_INCLUDED__
virtual void log(const c8 *text, ELOG_LEVEL ll=ELL_INFORMATION)=0
Prints out a text into the log.
char c8
8 bit character variable.
Interface for logging messages, warnings and errors.
virtual ~ILogger()
Destructor.
Base class of most objects of the Irrlicht Engine.
@ ELL_DEBUG
Used for printing information helpful in debugging.
virtual void setLogLevel(ELOG_LEVEL ll)=0
Sets a new log level.
@ ELL_WARNING
Warnings that something isn't as expected and can cause oddities.
Everything in the Irrlicht Engine can be found in this namespace.
virtual ELOG_LEVEL getLogLevel() const =0
Returns the current set log level.
@ ELL_ERROR
Something did go wrong.
@ ELL_INFORMATION
Useful information to print. For example hardware infos or something started/stopped.