mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
clang-format
This commit is contained in:
parent
b24ef39b9d
commit
33f881ac8b
@ -67,7 +67,7 @@ SPDLOG_INLINE void registry::initialize_logger(std::shared_ptr<logger> new_logge
|
|||||||
new_logger->set_level(level_);
|
new_logger->set_level(level_);
|
||||||
new_logger->flush_on(flush_level_);
|
new_logger->flush_on(flush_level_);
|
||||||
|
|
||||||
if(backtrace_level_ != level::off)
|
if (backtrace_level_ != level::off)
|
||||||
{
|
{
|
||||||
new_logger->enable_backtrace(backtrace_level_, backtrace_n_messages_);
|
new_logger->enable_backtrace(backtrace_level_, backtrace_n_messages_);
|
||||||
}
|
}
|
||||||
@ -76,8 +76,6 @@ SPDLOG_INLINE void registry::initialize_logger(std::shared_ptr<logger> new_logge
|
|||||||
{
|
{
|
||||||
register_logger_(std::move(new_logger));
|
register_logger_(std::move(new_logger));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SPDLOG_INLINE std::shared_ptr<logger> registry::get(const std::string &logger_name)
|
SPDLOG_INLINE std::shared_ptr<logger> registry::get(const std::string &logger_name)
|
||||||
|
@ -128,7 +128,6 @@ SPDLOG_INLINE void logger::enable_backtrace(level::level_enum trigger_level, siz
|
|||||||
this->set_level(spdlog::level::trace);
|
this->set_level(spdlog::level::trace);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// flush functions
|
// flush functions
|
||||||
SPDLOG_INLINE void logger::flush()
|
SPDLOG_INLINE void logger::flush()
|
||||||
{
|
{
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
|
|
||||||
#include "dist_sink.h"
|
#include "dist_sink.h"
|
||||||
#include "spdlog/details/null_mutex.h"
|
#include "spdlog/details/null_mutex.h"
|
||||||
#include "spdlog/details/log_msg.h"
|
|
||||||
#include "spdlog/details/log_msg_buffer.h"
|
#include "spdlog/details/log_msg_buffer.h"
|
||||||
#include "spdlog/details/circular_q.h"
|
#include "spdlog/details/circular_q.h"
|
||||||
|
|
||||||
@ -14,26 +13,9 @@
|
|||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
|
||||||
// Store log messages in circular buffer
|
// Store log messages in circular buffer
|
||||||
// If it encounters a message with high enough level, it will send all pervious message to its child sinks
|
// If it encounters a message with high enough level, it will send all previous message to it child sinks
|
||||||
// Useful for storing debug data in case of error/warning happens
|
// Useful for storing debug data in case of error/warning happens
|
||||||
|
|
||||||
//
|
|
||||||
// Example:
|
|
||||||
//
|
|
||||||
// #include "spdlog/spdlog.h"
|
|
||||||
// #include "spdlog/sinks/backtrace_sink.h
|
|
||||||
//
|
|
||||||
// int main() {
|
|
||||||
// auto backtrace_sink = std::make_shared<backtrace_sink>();
|
|
||||||
// backtrace_sink ->add_sink(std::make_shared<stdout_color_sink_mt>());
|
|
||||||
// spdlog::logger l("logger", backtrace_sink);
|
|
||||||
// logger.set_level(spdlog::level::trace);
|
|
||||||
// l.trace("Hello");
|
|
||||||
// l.debug("Hello");
|
|
||||||
// l.info("Hello");
|
|
||||||
// l.warn("This will trigger the log of all prev messages in the queue");
|
|
||||||
// }
|
|
||||||
|
|
||||||
namespace spdlog {
|
namespace spdlog {
|
||||||
namespace sinks {
|
namespace sinks {
|
||||||
template<typename Mutex>
|
template<typename Mutex>
|
||||||
|
Loading…
Reference in New Issue
Block a user