spdlog/lite-example/example.cpp
2019-03-23 13:31:57 +02:00

7 lines
107 B
C++

#include "logger.h"
int main()
{
auto l = spdlog::create_lite();
l.trace("HELLO {}!!!", "lite");
}