From 705c39b2748994ad5e191d3f6b81d53bf31a3793 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Mon, 6 Mar 2023 14:30:15 +0000 Subject: [PATCH] audio test service guaranteed log The logs in this service and others disappear sometimes. Bug: 210919187 Test: logd_integration_test Change-Id: I63b88ec4b88048ed64907df21d5a049a3abda2ec --- audio/aidl/default/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/audio/aidl/default/main.cpp b/audio/aidl/default/main.cpp index a861f9db39..af71aa872e 100644 --- a/audio/aidl/default/main.cpp +++ b/audio/aidl/default/main.cpp @@ -41,6 +41,9 @@ int main() { // android::base::SetMinimumLogSeverity(::android::base::VERBOSE); ABinderProcess_setThreadPoolMaxThreadCount(16); + // Guaranteed log for b/210919187 and logd_integration_test + LOG(INFO) << "Init for Audio AIDL HAL"; + // Make the default config service auto config = ndk::SharedRefBase::make(); const std::string configName = std::string() + Config::descriptor + "/default";