1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-05-07 23:03:53 +00:00
dominicpoeschko 25b10dc264 additional log overload
calling log with a string_view as msg called
```
 template<typename... Args>
    void log(source_loc loc, level::level_enum lvl, string_view_t fmt, const Args &... args)
```

instead of
```
template<class T, typename std::enable_if<std::is_convertible<const T &, spdlog::string_view_t>::value, T>::type * = nullptr>
    void log(source_loc loc, level::level_enum lvl, const T &msg)
```

which lead to an unnecessary call to fmt::format
2020-02-08 11:11:04 +01:00
..
2019-12-03 00:35:28 +02:00
2019-12-12 23:50:30 +02:00
2020-01-19 17:29:17 +08:00
2019-11-10 00:35:34 +02:00
2020-02-08 11:11:04 +01:00
2019-11-11 18:41:58 +08:00
2019-11-04 17:43:30 +02:00
2019-12-05 01:21:58 +02:00