summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2019-04-08 17:16:00 -0400
committerJackLivio <jack@livio.io>2019-04-08 17:16:00 -0400
commit8856175ad8f5fd120965bd37a2671c08d9c84396 (patch)
treef544f62717b39521660a69ea7c6213a520498ef0
parent1b2435b7ad39cbb76eda3c86515b3ee410ba9a00 (diff)
downloadsdl_core-8856175ad8f5fd120965bd37a2671c08d9c84396.tar.gz
Move log
-rw-r--r--src/components/application_manager/src/rpc_service_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/application_manager/src/rpc_service_impl.cc b/src/components/application_manager/src/rpc_service_impl.cc
index 4dc649850b..e88679b087 100644
--- a/src/components/application_manager/src/rpc_service_impl.cc
+++ b/src/components/application_manager/src/rpc_service_impl.cc
@@ -126,13 +126,13 @@ bool RPCServiceImpl::ManageMobileCommand(
auto plugin =
app_manager_.GetPluginManager().FindPluginToProcess(function_id, source);
if (!plugin) {
+ LOG4CXX_WARN(logger_, "Failed to find plugin : " << plugin.error());
int32_t message_type =
(*(message.get()))[strings::params][strings::message_type].asInt();
if ((source == commands::Command::CommandSource::SOURCE_MOBILE &&
kRequest == message_type) ||
(source == commands::Command::CommandSource::SOURCE_SDL &&
kResponse == message_type)) {
- LOG4CXX_WARN(logger_, "Failed to find plugin : " << plugin.error());
smart_objects::SmartObjectSPtr response =
MessageHelper::CreateNegativeResponse(
connection_key,