spdlog/src/spdlog.cpp

21 lines
792 B
C++
Raw Normal View History

2019-06-04 00:09:16 +03:00
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
2019-05-11 20:06:17 +03: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 20:06:17 +03:00
2019-05-13 00:09:00 +03:00
#include "spdlog/spdlog-inl.h"
2019-05-11 20:15:03 +03:00
#include "spdlog/common-inl.h"
2019-09-05 01:25:00 +03:00
#include "spdlog/details/backtracer-inl.h"
2019-05-11 13:20:11 +03: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 12:06:22 +03:00
// template instantiate logger with sinks init list
template spdlog::logger::logger(std::string name, sinks_init_list::iterator begin, sinks_init_list::iterator end);