summaryrefslogtreecommitdiff
path: root/jdwp_service.cpp
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2015-09-22 15:52:57 -0700
committerYabin Cui <yabinc@google.com>2015-09-23 12:53:38 -0700
commitb4245aa4cf3d106cba5342d751f92eb5fcbe0df2 (patch)
treee046660c0f6fcf1038982323810cb15e0326d591 /jdwp_service.cpp
parentad0e492e2ff1da34967a0216237f6c27e211f098 (diff)
downloadadb-b4245aa4cf3d106cba5342d751f92eb5fcbe0df2.tar.gz
Adb: use VLOG() to replace D() for verbose logging.
As there are too many D(), we can keep both VLOG() and D() now, and get rid of D() gradually. Change-Id: I2f1cb70bcab3e82c99fed939341d03f6b2216076
Diffstat (limited to 'jdwp_service.cpp')
-rw-r--r--jdwp_service.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/jdwp_service.cpp b/jdwp_service.cpp
index 0fa0732..4f0f740 100644
--- a/jdwp_service.cpp
+++ b/jdwp_service.cpp
@@ -16,7 +16,7 @@
/* implement the "debug-ports" and "track-debug-ports" device services */
-#define TRACE_TAG TRACE_JDWP
+#define TRACE_TAG JDWP
#include "sysdeps.h"
@@ -324,8 +324,9 @@ jdwp_process_event( int socket, unsigned events, void* _proc )
}
CloseProcess:
- if (proc->pid >= 0)
+ if (proc->pid >= 0) {
D( "remove pid %d to jdwp process list", proc->pid );
+ }
jdwp_process_free(proc);
return;
}