mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-16 08:55:46 +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");
|
||
|
}
|