summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/commands/hmi/update_device_list_request.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/src/commands/hmi/update_device_list_request.cc')
-rw-r--r--src/components/application_manager/src/commands/hmi/update_device_list_request.cc15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/components/application_manager/src/commands/hmi/update_device_list_request.cc b/src/components/application_manager/src/commands/hmi/update_device_list_request.cc
index 74d104b36d..c3b5903689 100644
--- a/src/components/application_manager/src/commands/hmi/update_device_list_request.cc
+++ b/src/components/application_manager/src/commands/hmi/update_device_list_request.cc
@@ -31,11 +31,8 @@
*/
#include "application_manager/commands/hmi/update_device_list_request.h"
-
#include "interfaces/HMI_API.h"
-#include <unistd.h>
-
namespace application_manager {
namespace commands {
@@ -48,7 +45,7 @@ UpdateDeviceListRequest::UpdateDeviceListRequest(
UpdateDeviceListRequest::~UpdateDeviceListRequest() {}
void UpdateDeviceListRequest::Run() {
- LOG4CXX_AUTO_TRACE(logger_);
+ LOGGER_AUTO_TRACE(logger_);
sync_primitives::AutoLock auto_lock(wait_hmi_lock);
// Fix problem with SDL and HMI HTML. This problem is not actual for HMI PASA.
// Flag conditional compilation for specific customer is used in order to
@@ -56,10 +53,10 @@ void UpdateDeviceListRequest::Run() {
// hit code to RTC
if (true == application_manager_.get_settings().launch_hmi()) {
if (!application_manager_.IsHMICooperating()) {
- LOG4CXX_INFO(logger_, "Wait for HMI Cooperation");
+ LOGGER_INFO(logger_, "Wait for HMI Cooperation");
subscribe_on_event(hmi_apis::FunctionID::BasicCommunication_OnReady);
termination_condition_.Wait(auto_lock);
- LOG4CXX_DEBUG(logger_, "HMI Cooperation OK");
+ LOGGER_DEBUG(logger_, "HMI Cooperation OK");
}
}
@@ -67,17 +64,17 @@ void UpdateDeviceListRequest::Run() {
}
void UpdateDeviceListRequest::on_event(const event_engine::Event& event) {
- LOG4CXX_AUTO_TRACE(logger_);
+ LOGGER_AUTO_TRACE(logger_);
sync_primitives::AutoLock auto_lock(wait_hmi_lock);
switch (event.id()) {
case hmi_apis::FunctionID::BasicCommunication_OnReady: {
- LOG4CXX_INFO(logger_, "received OnReady");
+ LOGGER_INFO(logger_, "received OnReady");
unsubscribe_from_event(hmi_apis::FunctionID::BasicCommunication_OnReady);
termination_condition_.Broadcast();
break;
};
default: {
- LOG4CXX_ERROR(logger_, "Unknown event ");
+ LOGGER_ERROR(logger_, "Unknown event ");
break;
};
}