composer: Change DLOGE to ALOGE during uevent initialization
Both Uevent and debug handler are static object and order of
initialization is not guaranteed so use ALOGE during init
to avoid any issue.
Bug: 225075915
Test: Run apct/device_boot_health_check_extra test for more than 400 times and don't find the symptom
Change-Id: I641e38b7aae15a283100606f115a47b75616c944
diff --git a/composer/hwc_session.cpp b/composer/hwc_session.cpp
index ce6ec68..69a74a6 100644
--- a/composer/hwc_session.cpp
+++ b/composer/hwc_session.cpp
@@ -100,7 +100,7 @@
if (!status) {
std::unique_lock<std::mutex> caller_lock(hwc_uevent->mutex_);
hwc_uevent->caller_cv_.notify_one();
- DLOGE("Failed to init uevent with err %d", status);
+ ALOGE("Failed to init uevent with err %d", status);
return;
}