Clean up verbose logging.
Change-Id: I6b01980e7145c4f8d25a5b50f620903f61a1b427
diff --git a/src/jdwp/jdwp_main.cc b/src/jdwp/jdwp_main.cc
index ad0610d..608ad04 100644
--- a/src/jdwp/jdwp_main.cc
+++ b/src/jdwp/jdwp_main.cc
@@ -271,7 +271,7 @@
Runtime* runtime = Runtime::Current();
runtime->AttachCurrentThread("JDWP", true);
- LOG(VERBOSE) << "JDWP: thread running";
+ VLOG(jdwp) << "JDWP: thread running";
/*
* Finish initializing, then notify the creating thread that
@@ -379,7 +379,7 @@
/* back to running, for thread shutdown */
Dbg::ThreadRunning();
- LOG(VERBOSE) << "JDWP: thread detaching and exiting...";
+ VLOG(jdwp) << "JDWP: thread detaching and exiting...";
runtime->DetachCurrentThread();
}
@@ -423,7 +423,7 @@
/* initializing or in the middle of something? */
if (last == 0) {
- LOG(VERBOSE) << "+++ last=busy";
+ VLOG(jdwp) << "+++ last=busy";
return 0;
}
@@ -431,7 +431,7 @@
int64_t now = MilliTime();
CHECK_GT(now, last);
- LOG(VERBOSE) << "+++ debugger interval=" << (now - last);
+ VLOG(jdwp) << "+++ debugger interval=" << (now - last);
return now - last;
}