Fix JDWP log spam.

If you have a breakpoint that logs an expression, this spam makes
the output unreadable.

Bug: 8191824
Change-Id: I0bbb9ac3a6165cbbd770adf75139f87079f87410
diff --git a/src/debugger.cc b/src/debugger.cc
index fdab63a..c92e43c 100644
--- a/src/debugger.cc
+++ b/src/debugger.cc
@@ -2815,14 +2815,13 @@
       m = actual_method;
     }
   }
-  VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m);
+  VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m)
+             << " receiver=" << pReq->receiver_
+             << " arg_count=" << pReq->arg_count_;
   CHECK(m != NULL);
 
   CHECK_EQ(sizeof(jvalue), sizeof(uint64_t));
 
-  LOG(INFO) << "self=" << soa.Self() << " pReq->receiver_=" << pReq->receiver_ << " m=" << m
-      << " #" << pReq->arg_count_ << " " << pReq->arg_values_;
-
   MethodHelper mh(m);
   ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength());
   arg_array.BuildArgArray(soa, pReq->receiver_, reinterpret_cast<jvalue*>(pReq->arg_values_));