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

48 lines
1.9 KiB
C++

#include "spdlog/sinks/file_sinks.h"
#include "spdlog/sinks/stdout_sinks.h"
7 years ago
#include "spdlog/spdlog.h"
9 years ago
#include <iostream>
#include <memory>
namespace spd = spdlog;
8 years ago
int main(int, char *[])
9 years ago
{
bool enable_debug = true;
try
{
// This other example use a single logger with multiple sinks.
// This means that the same log_msg is forwarded to multiple sinks;
// Each sink can have it's own log level and a message will be logged.
std::vector<spdlog::sink_ptr> sinks;
8 years ago
sinks.push_back(std::make_shared<spdlog::sinks::stdout_sink_mt>());
sinks.push_back(std::make_shared<spdlog::sinks::simple_file_sink_mt>("./log_regular_file.txt"));
sinks.push_back(std::make_shared<spdlog::sinks::simple_file_sink_mt>("./log_debug_file.txt"));
9 years ago
8 years ago
spdlog::logger console_multisink("multisink", sinks.begin(), sinks.end());
console_multisink.set_level(spdlog::level::warn);
9 years ago
8 years ago
sinks[0]->set_level(spdlog::level::trace); // console. Allow everything. Default value
sinks[1]->set_level(spdlog::level::trace); // regular file. Allow everything. Default value
sinks[2]->set_level(spdlog::level::off); // regular file. Ignore everything.
9 years ago
console_multisink.warn("warn: will print only on console and regular file");
8 years ago
if (enable_debug)
9 years ago
{
8 years ago
console_multisink.set_level(spdlog::level::debug); // level of the logger
sinks[1]->set_level(spdlog::level::debug); // regular file
sinks[2]->set_level(spdlog::level::debug); // debug file
9 years ago
}
console_multisink.debug("Debug: you should see this on console and both files");
// Release and close all loggers
spdlog::drop_all();
}
// Exceptions will only be thrown upon failed logger or sink construction (not during logging)
8 years ago
catch (const spd::spdlog_ex &ex)
9 years ago
{
std::cout << "Log init failed: " << ex.what() << std::endl;
return 1;
}
}