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