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/example/example.cpp

12 lines
231 B
C++

7 years ago
#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_TRACE
7 years ago
#include "spdlog/spdlog.h"
7 years ago
int main()
9 years ago
{
using namespace spdlog;
auto l = spdlog::default_logger();
l->set_level(spdlog::level::trace);
l->trace("hello123123213 ");
7 years ago
7 years ago
}