spdlog/lite-example/example.cpp

7 lines
119 B
C++
Raw Normal View History

2019-03-23 19:31:57 +08:00
#include "logger.h"
int main()
{
2019-03-23 22:15:58 +08:00
//auto l = spdlog::create_lite();
spdlog::lite::info("HELLO info {}", 123);
2019-03-23 19:31:57 +08:00
}