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

7 lines
119 B
C++

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