Remove debug logging.

GitOrigin-RevId: 2141ef5fcea0a84e60db3dfaf397efdc05d5c597
This commit is contained in:
levlam 2018-05-24 20:08:47 +03:00
parent 13fe5c0adc
commit ef01eba051

View File

@ -391,7 +391,7 @@ class ConfigRecoverer : public Actor {
dc_options_i_ = 0; dc_options_i_ = 0;
if (r_simple_config.is_ok()) { if (r_simple_config.is_ok()) {
auto config = r_simple_config.move_as_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()) { if (config->expires_ >= G()->unix_time()) {
string phone_number = G()->shared_config().get_option_string("my_phone_number"); string phone_number = G()->shared_config().get_option_string("my_phone_number");
simple_config_.dc_options.clear(); simple_config_.dc_options.clear();
@ -408,7 +408,6 @@ class ConfigRecoverer : public Actor {
} }
} }
VLOG(config_recoverer) << "Got SimpleConfig " << simple_config_; VLOG(config_recoverer) << "Got SimpleConfig " << simple_config_;
LOG(ERROR) << "Got SimpleConfig " << simple_config_;
} }
simple_config_expire_at_ = get_config_expire_time(); simple_config_expire_at_ = get_config_expire_time();