Merge pull request #487 from Telunsu/fix_wrong_assignment

src/logging.cc: fix wrong assignment
This commit is contained in:
Sergiu Deitsch 2019-11-04 09:08:57 +01:00 committed by GitHub
commit 5ef521d4ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2285,7 +2285,7 @@ void EnableLogCleaner(int overdue_days) {
}
void DisableLogCleaner() {
log_cleaner_overdue_days_ = false;
log_cleaner_enabled_ = false;
}
_END_GOOGLE_NAMESPACE_