mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-26 23:49:03 +08:00
Simplify by replacing is_convertible_to_sv with string_view_t param
This commit is contained in:
parent
b19ceb6d0a
commit
3eea04bcd3
@ -103,16 +103,15 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// log with no format string, just string message
|
// log with no format string, just string message
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
void log(source_loc loc, level::level_enum lvl, string_view_t msg)
|
||||||
void log(source_loc loc, level::level_enum lvl, S msg)
|
|
||||||
{
|
{
|
||||||
if (should_log(lvl))
|
if (should_log(lvl))
|
||||||
{
|
{
|
||||||
sink_it_(details::log_msg(loc, name_, lvl, msg));
|
sink_it_(details::log_msg(loc, name_, lvl, msg));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
|
||||||
void log(level::level_enum lvl, S msg)
|
void log(level::level_enum lvl, string_view_t msg)
|
||||||
{
|
{
|
||||||
if (should_log(lvl))
|
if (should_log(lvl))
|
||||||
{
|
{
|
||||||
@ -169,38 +168,36 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// log functions with no format string, just string
|
// log functions with no format string, just string
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
|
||||||
void trace(const S msg, source_loc loc = source_loc::current())
|
void trace(string_view_t msg, source_loc loc = source_loc::current())
|
||||||
{
|
{
|
||||||
log(loc, level::trace, msg);
|
log(loc, level::trace, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
|
||||||
void debug(const S msg, source_loc loc = source_loc::current())
|
void debug(string_view_t msg, source_loc loc = source_loc::current())
|
||||||
{
|
{
|
||||||
log(loc, level::debug, msg);
|
log(loc, level::debug, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
|
||||||
void info(const S msg, source_loc loc = source_loc::current())
|
void info(string_view_t msg, source_loc loc = source_loc::current())
|
||||||
{
|
{
|
||||||
log(loc, level::info, msg);
|
log(loc, level::info, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
|
||||||
void warn(const S msg, source_loc loc = source_loc::current())
|
void warn(string_view_t msg, source_loc loc = source_loc::current())
|
||||||
{
|
{
|
||||||
log(loc, level::warn, msg);
|
log(loc, level::warn, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
void error(string_view_t msg, source_loc loc = source_loc::current())
|
||||||
void error(const S msg, source_loc loc = source_loc::current())
|
|
||||||
{
|
{
|
||||||
log(loc, level::err, msg);
|
log(loc, level::err, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
void critical(string_view_t msg, source_loc loc = source_loc::current())
|
||||||
void critical(const S msg, source_loc loc = source_loc::current())
|
|
||||||
{
|
{
|
||||||
log(loc, level::critical, msg);
|
log(loc, level::critical, msg);
|
||||||
}
|
}
|
||||||
@ -242,38 +239,32 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// log functions with no format string, just string
|
// log functions with no format string, just string
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
void trace(string_view_t msg)
|
||||||
void trace(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::trace, msg);
|
log(level::trace, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
void debug(string_view_t msg)
|
||||||
void debug(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::debug, msg);
|
log(level::debug, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
void info(string_view_t msg)
|
||||||
void info(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::info, msg);
|
log(level::info, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
inline void warn(string_view_t msg)
|
||||||
void warn(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::warn, msg);
|
log(level::warn, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
void error(string_view_t msg)
|
||||||
void error(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::err, msg);
|
log(level::err, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
void critical(string_view_t msg)
|
||||||
void critical(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::critical, msg);
|
log(level::critical, msg);
|
||||||
}
|
}
|
||||||
|
@ -266,38 +266,32 @@ void critical(format_string_t<Args...> fmt, Args &&...args)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// log functions with no format string, just string
|
// log functions with no format string, just string
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
inline void trace(string_view_t msg)
|
||||||
void trace(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::trace, msg);
|
log(level::trace, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
inline void debug(string_view_t msg)
|
||||||
void debug(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::debug, msg);
|
log(level::debug, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
inline void info(string_view_t msg)
|
||||||
void info(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::info, msg);
|
log(level::info, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
inline void warn(string_view_t msg)
|
||||||
void warn(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::warn, msg);
|
log(level::warn, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
inline void error(string_view_t msg)
|
||||||
void error(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::err, msg);
|
log(level::err, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename S, typename = is_convertible_to_sv<S>>
|
inline void critical(string_view_t msg)
|
||||||
void critical(const S msg)
|
|
||||||
{
|
{
|
||||||
log(level::critical, msg);
|
log(level::critical, msg);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user