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