|
|
@ -15,6 +15,7 @@
|
|
|
|
#include "spdlog/version.h"
|
|
|
|
#include "spdlog/version.h"
|
|
|
|
#include "spdlog/details/synchronous_factory.h"
|
|
|
|
#include "spdlog/details/synchronous_factory.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <chrono>
|
|
|
|
#include <chrono>
|
|
|
|
#include <functional>
|
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
|
|
|
#include <memory>
|
|
|
@ -102,6 +103,10 @@ void shutdown();
|
|
|
|
// Automatic registration of loggers when using spdlog::create() or spdlog::create_async
|
|
|
|
// Automatic registration of loggers when using spdlog::create() or spdlog::create_async
|
|
|
|
void set_automatic_registration(bool automatic_registation);
|
|
|
|
void set_automatic_registration(bool automatic_registation);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// return spdlog version
|
|
|
|
|
|
|
|
std::string version();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// API for using default logger (stdout_color_mt),
|
|
|
|
// API for using default logger (stdout_color_mt),
|
|
|
|
// e.g: spdlog::info("Message {}", 1);
|
|
|
|
// e.g: spdlog::info("Message {}", 1);
|
|
|
|
//
|
|
|
|
//
|
|
|
|