spdlog/lite-example/example.cpp
2019-03-29 14:46:31 +03:00

7 lines
107 B
C++

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