我正在学习提升。在教程之后,我尝试通过发送对方法onlyWarnings的引用来设置接收器上的过滤器。
简介:
sink->set_filter(&onlyWarnings);
仅在警告:
set["Severity"].extract<int>() // is always 0
我在代码中明显缺少某些内容,也是本教程的重要部分。
标题
#ifndef ONEPRINT_LOGGER_H
#define ONEPRINT_LOGGER_H
#include <boost/log/core/core.hpp>
#include <boost/log/attributes/attribute_value_set.hpp>
#include <boost/log/trivial.hpp>
#include <boost/log/sources/severity_logger.hpp>
#include <boost/log/utility/setup/file.hpp>
#include <boost/log/utility/setup/console.hpp>
#include <boost/log/utility/setup/common_attributes.hpp>
#include <boost/log/sinks.hpp>
#include <boost/core/null_deleter.hpp>
#include <iostream>
namespace expr = boost::log::expressions;
namespace sources = boost::log::sources;
namespace sinks = boost::log::sinks;
namespace keywords = boost::log::keywords;
namespace ids {
enum severity_level
{
normal,
warning,
error,
critical
};
class Logger {
public:
Logger();
~Logger();
void logIt(std::string msg);
protected:
typedef sinks::asynchronous_sink<sinks::text_ostream_backend> asynchronousSink;
void setupLogging();
};
}
#endif //ONEPRINT_LOGGER_H
CPP:
#include "Logger.h"
class counter;
using namespace ids;
namespace { // NON-MEMBER METHODS
bool onlyWarnings(const boost::log::attribute_value_set& set)
{
return set["Severity"].extract<int>() > 0;
}
void severity_and_message(const boost::log::record_view &view, boost::log::formatting_ostream &os)
{
os << view.attribute_values()["Severity"].extract<int>() << ": " <<
view.attribute_values()["Message"].extract<std::string>();
}
}
Logger::Logger() {
setupLogging();
logIt("Testing");
}
Logger::~Logger() {
}
void Logger::setupLogging()
{
boost::shared_ptr< boost::log::core > core = boost::log::core::get();
boost::shared_ptr<sinks::text_ostream_backend> backend = boost::make_shared<sinks::text_ostream_backend>();
boost::shared_ptr<Logger::asynchronousSink> sink(new Logger::asynchronousSink(backend));
boost::shared_ptr<std::ostream> stream{&std::clog, boost::null_deleter{}};
sink->locked_backend()->add_stream(stream);
sink->set_filter(&onlyWarnings);
sink->set_formatter(&severity_and_message);
core->add_sink(sink);
}
void Logger::logIt(std::string msg) {
BOOST_LOG_TRIVIAL(warning) << msg;
sources::severity_logger<severity_level> severityLogger;
BOOST_LOG_SEV(severityLogger, critical) << msg;
}
答案 0 :(得分:2)
您确定严重性只是另一个属性吗?我建议你从一个有效的例子开始,比如这个:
http://www.boost.org/doc/libs/1_56_0/libs/log/doc/html/log/tutorial/advanced_filtering.html
http://boost-log.sourceforge.net/libs/log/example/doc/tutorial_filtering.cpp
在开始编码之前,你有没有让他们工作? 标记严重性记录器有一个示例过滤器,看起来与您的非常不同。
bool my_filter(logging::value_ref< severity_level, tag::severity > const& level,
logging::value_ref< std::string, tag::tag_attr > const& tag)
{
return level >= warning || tag == "IMPORTANT_MESSAGE";
}
也许尝试更像:
bool my_filter(logging::value_ref< severity_level, tag::severity > const& level)
{
return level >= warning ;
}