spdlog/src/spdlog.cpp

26 lines
1022 B
C++
Raw Permalink Normal View History

2019-06-03 17:09:16 -04:00
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
2019-05-11 13:06:17 -04:00
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#ifndef SPDLOG_COMPILED_LIB
#error Please define SPDLOG_COMPILED_LIB to compile this file.
#endif
2019-05-11 13:06:17 -04:00
2019-05-12 17:09:00 -04:00
#include "spdlog/spdlog-inl.h"
2019-05-11 13:15:03 -04:00
#include "spdlog/common-inl.h"
2019-09-04 18:25:00 -04:00
#include "spdlog/details/backtracer-inl.h"
2019-05-11 06:20:11 -04:00
#include "spdlog/details/registry-inl.h"
#include "spdlog/details/os-inl.h"
#include "spdlog/details/pattern_formatter-inl.h"
#include "spdlog/details/log_msg-inl.h"
#include "spdlog/details/log_msg_buffer-inl.h"
#include "spdlog/logger-inl.h"
#include "spdlog/sinks/sink-inl.h"
2019-09-19 18:28:02 -04:00
#include "spdlog/sinks/base_sink-inl.h"
#include "spdlog/details/null_mutex.h"
#include <mutex>
2019-09-19 05:06:53 -04:00
// template instantiate logger constructor with sinks init list
template spdlog::logger::logger(std::string name, sinks_init_list::iterator begin, sinks_init_list::iterator end);
2019-09-19 18:28:02 -04:00
template class spdlog::sinks::base_sink<std::mutex>;
template class spdlog::sinks::base_sink<spdlog::details::null_mutex>;