From ef01eba0519bc3b07845684162a8d20b9ad8f499 Mon Sep 17 00:00:00 2001 From: levlam Date: Thu, 24 May 2018 20:08:47 +0300 Subject: [PATCH] Remove debug logging. GitOrigin-RevId: 2141ef5fcea0a84e60db3dfaf397efdc05d5c597 --- td/telegram/ConfigManager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/td/telegram/ConfigManager.cpp b/td/telegram/ConfigManager.cpp index 9360b5fb..49c2408e 100644 --- a/td/telegram/ConfigManager.cpp +++ b/td/telegram/ConfigManager.cpp @@ -391,7 +391,7 @@ class ConfigRecoverer : public Actor { dc_options_i_ = 0; if (r_simple_config.is_ok()) { auto config = r_simple_config.move_as_ok(); - LOG(ERROR) << to_string(config); + VLOG(config_recoverer) << "Receive raw SimpleConfig" << to_string(config); if (config->expires_ >= G()->unix_time()) { string phone_number = G()->shared_config().get_option_string("my_phone_number"); simple_config_.dc_options.clear(); @@ -408,7 +408,6 @@ class ConfigRecoverer : public Actor { } } VLOG(config_recoverer) << "Got SimpleConfig " << simple_config_; - LOG(ERROR) << "Got SimpleConfig " << simple_config_; } simple_config_expire_at_ = get_config_expire_time();