From 98419f738b4365c5b8e1c8a54c759d3a6605ea70 Mon Sep 17 00:00:00 2001 From: Josh Gao Date: Mon, 20 Apr 2020 16:45:55 -0700 Subject: [PATCH] adbd: add a log message on start. Make it easier to identify adbd's PIDs for coverage purposes by adding an explicit log message to grep for. Test: manual Change-Id: I47e13417c0d9adb7d427414fd70c218f988909f5 --- adb/daemon/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/adb/daemon/main.cpp b/adb/daemon/main.cpp index 9e02e89ab..55b77835d 100644 --- a/adb/daemon/main.cpp +++ b/adb/daemon/main.cpp @@ -301,6 +301,8 @@ int adbd_main(int server_port) { setup_adb(addrs); } + LOG(INFO) << "adbd started"; + D("adbd_main(): pre init_jdwp()"); init_jdwp(); D("adbd_main(): post init_jdwp()");