get rid of one useless logging line

This commit is contained in:
Slavasil 2025-01-05 03:00:35 +03:00
parent 11122502cf
commit aaa68d5c17

View File

@ -69,7 +69,6 @@ void RepostManager::start() {
} }
} else if (obj.get_id() == td_api::updateNewChat::ID) { } else if (obj.get_id() == td_api::updateNewChat::ID) {
auto &update = (td_api::updateNewChat&)obj; auto &update = (td_api::updateNewChat&)obj;
spdlog::debug("chat {}", update.chat_->id_);
if (update.chat_->id_ == m_appConfig->tgDestinationId) { if (update.chat_->id_ == m_appConfig->tgDestinationId) {
++m_nLoadedRequiredChats; ++m_nLoadedRequiredChats;
spdlog::info("destination chat {} loaded (loaded {}/{} chats)", m_appConfig->tgDestinationId, m_nLoadedRequiredChats, m_nRequiredChats); spdlog::info("destination chat {} loaded (loaded {}/{} chats)", m_appConfig->tgDestinationId, m_nLoadedRequiredChats, m_nRequiredChats);