From 116d83907af16c1174c1c66800e6f4aeaeedd5c1 Mon Sep 17 00:00:00 2001 From: jiabin Date: Wed, 1 Mar 2023 22:52:57 +0000 Subject: [PATCH] AHAL: use verbose log for stub implementation. Use verbose log for Module::populateConnectedDevicePort and Module::checkAudioPatchEndpointsMatch as they are just stub implementation. Bug: 266216550 Test: make Change-Id: I591855cb53f3f7e2eeb9543ad214a10570dec996 --- audio/aidl/default/Module.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/audio/aidl/default/Module.cpp b/audio/aidl/default/Module.cpp index 5440b8d640..3b24069d98 100644 --- a/audio/aidl/default/Module.cpp +++ b/audio/aidl/default/Module.cpp @@ -1251,14 +1251,14 @@ bool Module::isMmapSupported() { } ndk::ScopedAStatus Module::populateConnectedDevicePort(AudioPort* audioPort __unused) { - LOG(DEBUG) << __func__ << ": do nothing and return ok"; + LOG(VERBOSE) << __func__ << ": do nothing and return ok"; return ndk::ScopedAStatus::ok(); } ndk::ScopedAStatus Module::checkAudioPatchEndpointsMatch( const std::vector& sources __unused, const std::vector& sinks __unused) { - LOG(DEBUG) << __func__ << ": do nothing and return ok"; + LOG(VERBOSE) << __func__ << ": do nothing and return ok"; return ndk::ScopedAStatus::ok(); }