clutchlog/tests/t-dump.cpp
2020-08-30 23:30:00 +02:00

18 lines
333 B
C++

#include <iostream>
#include "../clutchlog/clutchlog.h"
int main(/*const int argc, char* argv[]*/)
{
#ifdef WITH_CLUTCHLOG
auto& log = clutchlog::logger();
log.out(std::clog);
log.threshold(clutchlog::level::xdebug);
std::vector<std::string> msg = {"hello", "world", "!"};
CLUTCHDUMP(xdebug, msg);
#endif
}