Web framework C++
2.0.0
Simple web framework on c++ designed to easily create web pages, etc
|
logging info into file More...
#include <log_manager.h>
Public Member Functions | |
LogManager (const char *fileName) | |
void | operator<< (const char *data) |
void | operator<< (std::string data) |
logging info into file
LogManager create file and append it with input data data
LogManager::LogManager | ( | const char * | fileName | ) |
create log file, if fileName is null no data will be written
fileName | path to file (could be null) |
void LogManager::operator<< | ( | const char * | data | ) |
append to log new info
data | logging information |
void LogManager::operator<< | ( | std::string | data | ) |
append to log new info
data | logging information |