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++

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