mirror of
https://github.com/gabime/spdlog.git
synced 2024-12-25 10:01:33 +08:00
Simplify by replacing is_convertible_to_sv with string_view_t param
This commit is contained in:
parent
3eea04bcd3
commit
5882bfd0ad
@ -193,38 +193,32 @@ void critical(loc_with_fmt fmt, Args &&...args)
|
||||
}
|
||||
|
||||
// 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);
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
template<typename S, typename = is_convertible_to_sv<S>>
|
||||
void error(const S msg, source_loc loc = source_loc::current())
|
||||
void error(string_view_t msg, source_loc loc = source_loc::current())
|
||||
{
|
||||
log(loc, level::err, msg);
|
||||
}
|
||||
|
||||
template<typename S, typename = is_convertible_to_sv<S>>
|
||||
void critical(const S msg, source_loc loc = source_loc::current())
|
||||
void critical(string_view_t msg, source_loc loc = source_loc::current())
|
||||
{
|
||||
log(loc, level::critical, msg);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user