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