mirror of
https://github.com/gabime/spdlog.git
synced 2026-04-10 11:34:29 +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");
|
||
|
|
}
|