|
|
|
@ -28,7 +28,6 @@ void spdlog::lite::logger::log(spdlog::lite::level lvl, const string_view_t &sv)
|
|
|
|
|
impl_->log(spd_level, sv);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void spdlog::lite::logger::log_printf(spdlog::lite::level lvl, const char *format, va_list args)
|
|
|
|
|
{
|
|
|
|
|
char buffer[500];
|
|
|
|
@ -40,7 +39,6 @@ void spdlog::lite::logger::log_printf(spdlog::lite::level lvl, const char* forma
|
|
|
|
|
log(lvl, string_view_t{buffer, static_cast<size_t>(size)});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void spdlog::lite::logger::trace_f(const char *format, ...)
|
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
@ -138,5 +136,3 @@ spdlog::lite::logger &spdlog::lite::default_logger()
|
|
|
|
|
static spdlog::lite::logger s_default(spdlog::default_logger());
|
|
|
|
|
return s_default;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|