Move logging from ERROR to INFO.

GitOrigin-RevId: a25465b87c5e46c828a88060520ffd6618945f19
This commit is contained in:
levlam 2019-06-02 03:17:30 +03:00
parent b7f0df977d
commit 5e25f9309e

View File

@ -521,14 +521,14 @@ class FastPingTestActor : public Actor {
return stop();
}
connection_ = r_connection.move_as_ok();
LOG(ERROR) << "RTT: " << connection_->rtt_;
LOG(INFO) << "RTT: " << connection_->rtt_;
connection_->rtt_ = 0;
loop();
}
void loop() override {
if (handshake_ && connection_) {
LOG(ERROR) << iteration_;
LOG(INFO) << "Iteration " << iteration_;
if (iteration_ == 6) {
Scheduler::instance()->finish();
return stop();