Update current_size_ to 0 in after of truncating in rotation error

This commit is contained in:
Gabi Melman 2018-11-20 10:26:10 +02:00 committed by GitHub
parent f1ab6feba2
commit b64e4464a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -105,6 +105,7 @@ private:
if (!rename_file(src, target))
{
file_helper_.reopen(true); // truncate the log file anyway to prevent it to grow beyond its limit!
current_size_ = 0;
throw spdlog_ex(
"rotating_file_sink: failed renaming " + filename_to_str(src) + " to " + filename_to_str(target), errno);
}