mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-04 11:55:51 +00:00
Fixes #2359. Please review and commit clang-tidy fixes. Co-authored-by: godexsoft <385326+godexsoft@users.noreply.github.com>
65 lines
2.4 KiB
C++
65 lines
2.4 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of clio: https://github.com/XRPLF/clio
|
|
Copyright (c) 2025, the clio developers.
|
|
|
|
Permission to use, copy, modify, and distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include "util/LoggerFixtures.hpp"
|
|
|
|
#include "util/log/Logger.hpp"
|
|
|
|
#include <boost/log/core/core.hpp>
|
|
#include <boost/log/expressions/predicates/channel_severity_filter.hpp>
|
|
#include <boost/log/keywords/format.hpp>
|
|
#include <boost/log/utility/setup/common_attributes.hpp>
|
|
#include <boost/log/utility/setup/console.hpp>
|
|
#include <boost/log/utility/setup/formatter_parser.hpp>
|
|
|
|
#include <algorithm>
|
|
#include <mutex>
|
|
|
|
LoggerFixture::LoggerFixture()
|
|
{
|
|
static std::once_flag kONCE;
|
|
std::call_once(kONCE, [] {
|
|
boost::log::add_common_attributes();
|
|
boost::log::register_simple_formatter_factory<util::Severity, char>("Severity");
|
|
});
|
|
|
|
namespace keywords = boost::log::keywords;
|
|
namespace expr = boost::log::expressions;
|
|
auto core = boost::log::core::get();
|
|
|
|
core->remove_all_sinks();
|
|
boost::log::add_console_log(stream_, keywords::format = "%Channel%:%Severity% %Message%");
|
|
auto minSeverity = expr::channel_severity_filter(util::LogChannel, util::LogSeverity);
|
|
|
|
std::ranges::for_each(util::Logger::kCHANNELS, [&minSeverity](char const* channel) {
|
|
minSeverity[channel] = util::Severity::TRC;
|
|
});
|
|
|
|
minSeverity["General"] = util::Severity::DBG;
|
|
minSeverity["Trace"] = util::Severity::TRC;
|
|
|
|
core->set_filter(minSeverity);
|
|
core->set_logging_enabled(true);
|
|
}
|
|
|
|
NoLoggerFixture::NoLoggerFixture()
|
|
{
|
|
boost::log::core::get()->set_logging_enabled(false);
|
|
}
|