summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/commands/mobile/put_file_response.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/src/commands/mobile/put_file_response.cc')
-rw-r--r--src/components/application_manager/src/commands/mobile/put_file_response.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/application_manager/src/commands/mobile/put_file_response.cc b/src/components/application_manager/src/commands/mobile/put_file_response.cc
index 50c62aef7f..4e4dc5865b 100644
--- a/src/components/application_manager/src/commands/mobile/put_file_response.cc
+++ b/src/components/application_manager/src/commands/mobile/put_file_response.cc
@@ -46,12 +46,12 @@ PutFileResponse::PutFileResponse(const MessageSharedPtr& message,
PutFileResponse::~PutFileResponse() {}
void PutFileResponse::Run() {
- LOG4CXX_AUTO_TRACE(logger_);
+ LOGGER_AUTO_TRACE(logger_);
uint32_t app_id =
(*message_)[strings::params][strings::connection_key].asUInt();
ApplicationSharedPtr app = application_manager_.application(app_id);
if (!app) {
- LOG4CXX_ERROR(logger_, "Application not registered");
+ LOGGER_ERROR(logger_, "Application not registered");
SendResponse(false, mobile_apis::Result::APPLICATION_NOT_REGISTERED);
return;
}