When BackgroundVolume Object destructor called, if deactivateDuckingAll is failed, it trys one more time.
In that case, previous it didn't check the result, but now, it checks the result as log.
Change-Id: Idef650ddbda17ff96c92547fda7f671974afd8ca
if (false == deactivateDuckingAll()) {
SLOG(LOG_WARN, tts_tag(), "[BackgroundVolume] Unknown ducking deactivation failure. One last trial");
- deactivateDuckingAll();
+ bool ret = deactivateDuckingAll();
+ SLOG(LOG_WARN, tts_tag(), "[BackgroundVolume] Checked the result of trying to deactivateDuckingAll() once more. (%d)", ret);
}
if (nullptr != mPostponedModifyTimer) {