throw spdlog_err on format errors

This commit is contained in:
gabime 2014-12-02 02:16:09 +02:00
parent f41d989bf0
commit 7a9781a94c
1 changed files with 12 additions and 5 deletions

View File

@ -574,10 +574,17 @@ inline void spdlog::pattern_formatter::handle_flag(char flag)
inline void spdlog::pattern_formatter::format(details::log_msg& msg)
{
try
{
for (auto &f : _formatters)
{
f->format(msg);
}
//write eol
msg.formatted.write(details::os::eol(), details::os::eol_size());
}
catch(const fmt::FormatError& e)
{
throw spdlog_ex(fmt::format("formatting error while processing format string: {}", e.what()));
}
}