diff options
| -rw-r--r-- | src/jdwp/jdwp_main.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jdwp/jdwp_main.cc b/src/jdwp/jdwp_main.cc index 608ad0430f..22767ef6b8 100644 --- a/src/jdwp/jdwp_main.cc +++ b/src/jdwp/jdwp_main.cc @@ -228,7 +228,7 @@ JdwpState::~JdwpState() { /* * Close down the network to inspire the thread to halt. */ - LOG(DEBUG) << "JDWP shutting down net..."; + VLOG(jdwp) << "JDWP shutting down net..."; (*transport->shutdown)(this); if (debug_thread_started_) { @@ -239,7 +239,7 @@ JdwpState::~JdwpState() { } } - LOG(DEBUG) << "JDWP freeing netstate..."; + VLOG(jdwp) << "JDWP freeing netstate..."; (*transport->free)(this); netState = NULL; } |