add single logger method and log_msg constructor and tests/test_time_point.cpp

This commit is contained in:
Ron Rechenmacher
2020-04-18 08:58:11 -05:00
parent d28465bf60
commit 9e6f5b6b2d
5 changed files with 59 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ namespace details {
struct SPDLOG_API log_msg
{
log_msg() = default;
log_msg(log_clock::time_point log_time, source_loc loc, string_view_t logger_name, level::level_enum lvl, string_view_t msg);
log_msg(source_loc loc, string_view_t logger_name, level::level_enum lvl, string_view_t msg);
log_msg(string_view_t logger_name, level::level_enum lvl, string_view_t msg);
log_msg(const log_msg &other) = default;