diff options
| author | levlam <levlam@telegram.org> | 2018-06-05 00:12:34 +0300 |
|---|---|---|
| committer | levlam <levlam@telegram.org> | 2018-06-05 00:12:34 +0300 |
| commit | 89c8bf819cc39ade9d2556d8c0e9c75008137f10 (patch) | |
| tree | a892098577f70ff3bdccfff883901a834eaeb429 /tdnet/td/net/HttpConnectionBase.cpp | |
| parent | 9b946e7394ab9e84339e65563da926cc928f2074 (diff) | |
Move some logging from INFO to DEBUG,
GitOrigin-RevId: f56140a9c03fcb0af8c8ecc381b3e111febf616f
Diffstat (limited to 'tdnet/td/net/HttpConnectionBase.cpp')
| -rw-r--r-- | tdnet/td/net/HttpConnectionBase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdnet/td/net/HttpConnectionBase.cpp b/tdnet/td/net/HttpConnectionBase.cpp index 087ee5b79..c5dc9a95f 100644 --- a/tdnet/td/net/HttpConnectionBase.cpp +++ b/tdnet/td/net/HttpConnectionBase.cpp @@ -109,7 +109,7 @@ void HttpConnectionBase::loop() { on_error(Status::Error(res.error().public_message())); } else if (res.ok() == 0) { state_ = State::Write; - LOG(INFO) << "Send query to handler"; + LOG(DEBUG) << "Send query to handler"; live_event(); on_query(std::move(current_query_)); } else { @@ -138,7 +138,7 @@ void HttpConnectionBase::loop() { state_ = State::Close; } if (can_close(stream_connection_)) { - LOG(INFO) << "Can close the connection"; + LOG(DEBUG) << "Can close the connection"; state_ = State::Close; } if (state_ == State::Close) { |
