Commit ee1a3619 authored by David Van Cleve's avatar David Van Cleve Committed by Commit Bot

net: Quiet QuicSimpleServer's shutdown warning to reduce test logspam

If this log line isn't needed in client builds, WDYT about changing it
to a DVLOG?

It's pretty noisy right now; for instance, see this example run
from URLLoader tests: https://pastebin.com/7YBwscgP.

Change-Id: Ica12950cf9149a3027148c532e29a32ff28798ff
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2298639Reviewed-by: default avatarDavid Schinazi <dschinazi@chromium.org>
Commit-Queue: David Schinazi <dschinazi@chromium.org>
Commit-Queue: David Van Cleve <davidvc@chromium.org>
Auto-Submit: David Van Cleve <davidvc@chromium.org>
Cr-Commit-Position: refs/heads/master@{#788440}
parent 60d2986f
...@@ -125,7 +125,7 @@ bool QuicSimpleServer::Listen(const IPEndPoint& address) { ...@@ -125,7 +125,7 @@ bool QuicSimpleServer::Listen(const IPEndPoint& address) {
} }
void QuicSimpleServer::Shutdown() { void QuicSimpleServer::Shutdown() {
LOG(WARNING) << "QuicSimpleServer is shutting down"; DVLOG(1) << "QuicSimpleServer is shutting down";
// Before we shut down the epoll server, give all active sessions a chance to // Before we shut down the epoll server, give all active sessions a chance to
// notify clients that they're closing. // notify clients that they're closing.
dispatcher_->Shutdown(); dispatcher_->Shutdown();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment