|
SPH
|
Standard output logger. More...
#include <Logger.h>
Public Member Functions | |
| virtual void | writeString (const std::string &s) override |
| Logs a string message. More... | |
Public Member Functions inherited from ILogger | |
| template<typename... TArgs> | |
| void | write (TArgs &&... args) |
| Creates and logs a message by concatenating arguments. More... | |
| void | setPrecision (const Size newPrecision) |
| Changes the precision of printed numbers. More... | |
| void | setScientific (const bool newScientific) |
| Sets/unsets scientific notation. More... | |
Public Member Functions inherited from Polymorphic | |
| virtual | ~Polymorphic () |
Public Member Functions inherited from Noncopyable | |
| Noncopyable ()=default | |
| Noncopyable (const Noncopyable &)=delete | |
| Noncopyable (Noncopyable &&)=default | |
| Noncopyable & | operator= (const Noncopyable &)=delete |
| Noncopyable & | operator= (Noncopyable &&)=default |
Standard output logger.
This is just a wrapper of std::cout with ILogger interface, it does not tructed on spot with no cost. All StdOutLoggers print to the same output.
|
overridevirtual |
Logs a string message.
Implements ILogger.
Definition at line 20 of file Logger.cpp.