1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00
VILLASnode/fpga/lib/log.cpp
2018-01-10 11:02:08 +01:00

26 lines
502 B
C++

#include "log.hpp"
#include "utils.h"
int Logger::depth;
int Logger::depthCurrent;
int Logger::global_level = 0;
Logger cpp_debug(0, CLR_BLU("Debug: "));
Logger cpp_info(20);
Logger cpp_warn(80, CLR_YEL("Warning: "));
Logger cpp_error(100, CLR_RED("Error: "));
void test()
{
cpp_debug << "Hello";
{
Logger::Indenter indent = cpp_debug.indent();
cpp_debug << "indented";
{
Logger::Indenter indent = cpp_debug.indent();
cpp_debug << "indented";
}
}
cpp_debug << "and root again";
}