From 5e25f9309e225b5ccbe26c78c533c9962686814e Mon Sep 17 00:00:00 2001 From: levlam Date: Sun, 2 Jun 2019 03:17:30 +0300 Subject: [PATCH] Move logging from ERROR to INFO. GitOrigin-RevId: a25465b87c5e46c828a88060520ffd6618945f19 --- test/mtproto.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/mtproto.cpp b/test/mtproto.cpp index 2ce9226a..dd958f27 100644 --- a/test/mtproto.cpp +++ b/test/mtproto.cpp @@ -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();