diff options
author | Yabin Cui <yabinc@google.com> | 2015-09-24 01:20:55 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-09-24 01:20:55 +0200 |
commit | 7c7d876d152e27a5b15617f9e907e18314f08fa5 (patch) | |
tree | f4927a54ff23e0f1dbe800f86d7e43bbbc8c2f56 /minadbd/services.cpp | |
parent | am cd3c8c4e: am b739a32b: Merge "recovery: Add timestamps in update logs." (diff) | |
parent | am 3317d501: Merge "minadbd: move from D() to VLOG()." (diff) | |
download | android_bootable_recovery-7c7d876d152e27a5b15617f9e907e18314f08fa5.tar android_bootable_recovery-7c7d876d152e27a5b15617f9e907e18314f08fa5.tar.gz android_bootable_recovery-7c7d876d152e27a5b15617f9e907e18314f08fa5.tar.bz2 android_bootable_recovery-7c7d876d152e27a5b15617f9e907e18314f08fa5.tar.lz android_bootable_recovery-7c7d876d152e27a5b15617f9e907e18314f08fa5.tar.xz android_bootable_recovery-7c7d876d152e27a5b15617f9e907e18314f08fa5.tar.zst android_bootable_recovery-7c7d876d152e27a5b15617f9e907e18314f08fa5.zip |
Diffstat (limited to 'minadbd/services.cpp')
-rw-r--r-- | minadbd/services.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/minadbd/services.cpp b/minadbd/services.cpp index 5c1d35614..2a3027bd8 100644 --- a/minadbd/services.cpp +++ b/minadbd/services.cpp @@ -23,7 +23,6 @@ #include "sysdeps.h" -#define TRACE_TAG TRACE_SERVICES #include "adb.h" #include "fdevent.h" #include "fuse_adb_provider.h" @@ -82,7 +81,7 @@ static int create_service_thread(void (*func)(int, void *), void *cookie) { return -1; } - D("service thread started, %d:%d\n",s[0], s[1]); + VLOG(SERVICES) << "service thread started, " << s[0] << ":" << s[1]; return s[0]; } |