1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-04-29 12:03:53 +00:00
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");
}