spdlog/lite-example/example.cpp
2019-03-23 16:15:58 +02:00

7 lines
119 B
C++

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