Arctic Engine
Designed to give you control and not take anything away.
Collaboration diagram for Log:

Functions

std::unique_ptr< std::ostringstream, void(*)(std::ostringstream *str)> arctic::Log ()
 Provides a streaming interface to write log Usage example: More...
 
void arctic::Log (const char *text)
 Writes message text to log.
 
void arctic::Log (const char *text1, const char *text2)
 Writes message text to log.
 
void arctic::Log (const char *text1, const char *text2, const char *text3)
 Writes message text to log.
 
void arctic::StartLogger ()
 Starts the logger.
 
void arctic::StopLogger ()
 Stops the logger.
 

Detailed Description

Function Documentation

◆ Log()

std::unique_ptr< std::ostringstream, void(*)(std::ostringstream *str)> arctic::Log ( )

Provides a streaming interface to write log Usage example:

*Log() << "Hello World!";
void Log(const char *text)
Writes message text to log.
Definition: log.cpp:132