Update spdlog.h

This commit is contained in:
Gabi Melman 2016-09-03 14:08:55 +03:00 committed by GitHub
parent 01ef3d3114
commit b18d235b63

View File

@ -20,15 +20,13 @@
namespace spdlog
{
//
// Return an existing logger or nullptr if a logger with such name doesn't exist.
// Examples:
// example: spdlog::get("my_logger")->info("hello {}", "world");
//
// spdlog::get("mylog")->info("Hello");
// auto logger = spdlog::get("mylog");
// logger.info("This is another message" , x, y, z);
// logger.info() << "This is another message" << x << y << z;
std::shared_ptr<logger> get(const std::string& name);
//
// Set global formatting
// example: spdlog::set_pattern("%Y-%m-%d %H:%M:%S.%e %l : %v");