Skip to content

Commit

Permalink
Fix log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
levlam committed Aug 15, 2021
1 parent 2128c2e commit 2e524bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions td/telegram/UpdatesManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1450,9 +1450,9 @@ void UpdatesManager::after_get_difference() {
std::move(update.promise), "after get difference");
CHECK(!running_get_difference_);
}
VLOG(get_difference) << "Finish to apply postponed pts updates, have " << postponed_pts_updates_.size()
<< " left postponed updates with pts = " << get_pts()
<< " and accumulated_pts = " << accumulated_pts_;
VLOG(get_difference) << "After applying postponed pts updates have pts = " << get_pts()
<< ", max_pts = " << accumulated_pts_ << " and " << pending_pts_updates_.size() << " + "
<< postponed_pts_updates_.size() << " pending pts updates";
}

td_->animations_manager_->after_get_difference();
Expand Down

0 comments on commit 2e524bb

Please sign in to comment.