fix compiling error and typo

This commit is contained in:
Kelvin Hu 2021-01-19 22:03:47 +08:00 committed by GitHub
parent 46d418164d
commit 47cbf3828d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ namespace spdlog {
namespace sinks {
/*
* Generator of Houlry log file names in format basename.YYYY-MM-DD-HH.ext
* Generator of Hourly log file names in format basename.YYYY-MM-DD-HH.ext
*/
struct hourly_filename_calculator
{
@ -156,7 +156,7 @@ private:
if (!ok)
{
filenames_q_.push_back(std::move(current_file));
throw_spdlog_ex("Failed removing hourly file " + filename_to_str(old_filename), errno);
SPDLOG_THROW(spdlog_ex("Failed removing hourly file " + filename_to_str(old_filename), errno));
}
}
filenames_q_.push_back(std::move(current_file));