mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-16 00:45:48 +08:00
7 lines
119 B
C++
7 lines
119 B
C++
#include "logger.h"
|
|
|
|
int main()
|
|
{
|
|
//auto l = spdlog::create_lite();
|
|
spdlog::lite::info("HELLO info {}", 123);
|
|
} |