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

16 lines
335 B
C++

7 years ago
#include "spdlite.h"
7 years ago
int main()
{
7 years ago
auto l = spdlog::create_lite();
7 years ago
l.set_level(spdlog::lite::level::trace);
7 years ago
l.trace_printf("Hello %s ", "GABI");
l.info_printf("Hello %d", 12346);
l.warn_printf("Hello %f", 12346.5656);
7 years ago
l.warn("Hello {}", "LITE :) ");
auto l2 = l.clone("logger2");
l2.debug("HELLO");
7 years ago
}