split into src and lib and socket changes
* libanthracite files are now all in lib/ * anthracite-bin + anthracite-api-bin files are now all in src/ * socket split into header and source properly
This commit is contained in:
parent
fba87f3fbb
commit
71be773d49
24 changed files with 49 additions and 121 deletions
22
lib/log/log.cpp
Normal file
22
lib/log/log.cpp
Normal file
|
@ -0,0 +1,22 @@
|
|||
#include "./log.hpp"
|
||||
|
||||
namespace anthracite::log {
|
||||
enum LOG_LEVEL Logger::_level = LOG_LEVEL_NONE;
|
||||
|
||||
// TODO: implement logger as a singleton to prevent duplicates
|
||||
Logger::Logger() = default;
|
||||
void Logger::initialize(enum LOG_LEVEL level) {
|
||||
_level = level;
|
||||
}
|
||||
|
||||
LogBuf::LogBuf(std::ostream& output_stream, const std::string& tag, enum LOG_LEVEL level) : _output_stream(output_stream), _tag(tag), _level(level) {}
|
||||
|
||||
int LogBuf::sync() {
|
||||
if (this->_level <= logger._level) {
|
||||
std::cout << "[" << this ->_tag << "] " << this->str();
|
||||
std::cout.flush();
|
||||
}
|
||||
this->str("");
|
||||
return 0;
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue