diff options
author | Yabin Cui <yabinc@google.com> | 2015-09-24 01:11:11 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-09-24 01:11:11 +0200 |
commit | f7319f4dbd04f72a53f5ad313794ade240530406 (patch) | |
tree | 346b8142e440a212d6c398d404ac3742f1d715c4 /minadbd/adb_main.cpp | |
parent | am b739a32b: Merge "recovery: Add timestamps in update logs." (diff) | |
parent | Merge "minadbd: move from D() to VLOG()." (diff) | |
download | android_bootable_recovery-f7319f4dbd04f72a53f5ad313794ade240530406.tar android_bootable_recovery-f7319f4dbd04f72a53f5ad313794ade240530406.tar.gz android_bootable_recovery-f7319f4dbd04f72a53f5ad313794ade240530406.tar.bz2 android_bootable_recovery-f7319f4dbd04f72a53f5ad313794ade240530406.tar.lz android_bootable_recovery-f7319f4dbd04f72a53f5ad313794ade240530406.tar.xz android_bootable_recovery-f7319f4dbd04f72a53f5ad313794ade240530406.tar.zst android_bootable_recovery-f7319f4dbd04f72a53f5ad313794ade240530406.zip |
Diffstat (limited to '')
-rw-r--r-- | minadbd/adb_main.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/minadbd/adb_main.cpp b/minadbd/adb_main.cpp index 514f19699..c968204b2 100644 --- a/minadbd/adb_main.cpp +++ b/minadbd/adb_main.cpp @@ -19,8 +19,6 @@ #include <stdio.h> #include <stdlib.h> -#define TRACE_TAG TRACE_ADB - #include "sysdeps.h" #include "adb.h" @@ -38,7 +36,7 @@ int adb_main(int is_daemon, int server_port, int /* reply_fd */) { init_transport_registration(); usb_init(); - D("Event loop starting\n"); + VLOG(ADB) << "Event loop starting"; fdevent_loop(); return 0; |