Skip to content

Commit

Permalink
change some log types to debug only
Browse files Browse the repository at this point in the history
  • Loading branch information
bernatx committed Nov 9, 2021
1 parent 2df3f17 commit 29ef62a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LibCarla/source/carla/streaming/detail/tcp/Client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ namespace tcp {
ReadData();
} else {
// Else try again.
log_info("streaming client: failed to send stream id:", ec.message());
log_debug("streaming client: failed to send stream id:", ec.message());
Connect();
}
}));
Expand Down Expand Up @@ -186,7 +186,7 @@ namespace tcp {
ReadData();
} else {
// As usual, if anything fails start over from the very top.
log_info("streaming client: failed to read data:", ec.message());
log_debug("streaming client: failed to read data:", ec.message());
Connect();
}
};
Expand All @@ -207,7 +207,7 @@ namespace tcp {
message->buffer(),
boost::asio::bind_executor(_strand, handle_read_data));
} else if (!_done) {
log_info("streaming client: failed to read header:", ec.message());
log_debug("streaming client: failed to read header:", ec.message());
DEBUG_ONLY(log_debug("size = ", message->size()));
DEBUG_ONLY(log_debug("bytes = ", bytes));
Connect();
Expand Down

0 comments on commit 29ef62a

Please sign in to comment.