mirror of
https://github.com/gabime/spdlog.git
synced 2026-04-10 11:34:29 +08:00
feature: adds string view overloads for logger accessor (#3023)
Co-authored-by: Ben Leadbetter <ben.leadbetter@native-instruments.com>
This commit is contained in:
@@ -20,6 +20,10 @@
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
#if __cplusplus >= 201703L // C++17
|
||||
#include <string_view>
|
||||
#endif
|
||||
|
||||
namespace spdlog {
|
||||
|
||||
using default_factory = synchronous_factory;
|
||||
@@ -50,6 +54,10 @@ SPDLOG_API void initialize_logger(std::shared_ptr<logger> logger);
|
||||
// exist.
|
||||
// example: spdlog::get("my_logger")->info("hello {}", "world");
|
||||
SPDLOG_API std::shared_ptr<logger> get(const std::string &name);
|
||||
#if __cplusplus >= 201703L // C++17
|
||||
SPDLOG_API std::shared_ptr<logger> get(std::string_view name);
|
||||
SPDLOG_API std::shared_ptr<logger> get(const char *name);
|
||||
#endif
|
||||
|
||||
// Set global formatter. Each sink in each logger will get a clone of this object
|
||||
SPDLOG_API void set_formatter(std::unique_ptr<spdlog::formatter> formatter);
|
||||
|
||||
Reference in New Issue
Block a user