You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/lite-example/example.cpp

10 lines
199 B
C++

#define SPDLITE_ACTIVE_LEVEL SPDLITE_LEVEL_TRACE
#include "spdlite.h"
int main()
{
//auto l = spdlog::create_lite();
//l.info("Hello spdlog {}", "lite");
SPDLITE_TRACE("HELLO TRACE");
}