Remove redundant logging.

This commit is contained in:
levlam 2024-02-14 13:56:18 +03:00
parent f54e5bb4bf
commit 52c27fef85
3 changed files with 0 additions and 4 deletions

View File

@ -867,8 +867,6 @@ class ConfigRecoverer final : public Actor {
if (wakeup_timestamp) {
VLOG(config_recoverer) << "Wakeup in " << format::as_time(wakeup_timestamp.in());
set_timeout_at(wakeup_timestamp.at());
} else {
VLOG(config_recoverer) << "Wakeup never";
}
}

View File

@ -1097,7 +1097,6 @@ uint64 InlineQueriesManager::send_inline_query(UserId bot_user_id, DialogId dial
}
void InlineQueriesManager::loop() {
LOG(INFO) << "Inline query loop";
if (pending_inline_query_ == nullptr) {
return;
}

View File

@ -3278,7 +3278,6 @@ void Td::dec_request_actor_refcnt() {
request_actor_refcnt_--;
LOG(DEBUG) << "Decrease request actor count to " << request_actor_refcnt_;
if (request_actor_refcnt_ == 0) {
LOG(INFO) << "Have no request actors";
clear();
dec_actor_refcnt(); // remove guard
}