fix: correct log output (#6048)

This commit is contained in:
Yat Ho 2023-09-30 10:37:14 +08:00 committed by GitHub
parent aa0ff75c16
commit 82a9aa6cf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1895,8 +1895,8 @@ void tr_torrent::recheck_completeness()
this,
fmt::format(
"State changed from {} to {}",
get_completion_string(this->completeness),
get_completion_string(completeness)));
get_completion_string(completeness),
get_completion_string(new_completeness)));
}
this->completeness = new_completeness;