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

11 lines
255 B
C++

#define SPDLITE_ACTIVE_LEVEL SPDLITE_LEVEL_INFO
#include "logger.h"
int main()
{
//auto l = spdlog::create_lite();
//spdlog::lite::info("HELLO info {}", 123);
SPDLITE_TRACE("SOME MACRO {}", 123);
SPDLITE_INFO("SOME MACRO {}", "HHHHH");
}