summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSKobziev <skobziev@luxoft.com>2018-10-17 17:16:35 +0300
committerSKobziev <skobziev@luxoft.com>2018-10-17 17:22:43 +0300
commit0d5b3c4dc01844880f46b752076278578b77781f (patch)
treed49d90fe2f1b66b5bf0a00429146e31a40e832df /src
parent28235f88a6733106a7e8a0d490dfb16a5f374a33 (diff)
downloadsdl_core-0d5b3c4dc01844880f46b752076278578b77781f.tar.gz
Fix log severity level in on_vehicle_data_notification.cc
Fixed log severity level in on_vehicle_data_notification.cc: LOG4CXX_ERROR is changed on LOG4CXX_DEBUG and corrected a mistake in string.
Diffstat (limited to 'src')
-rw-r--r--src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/commands/mobile/on_vehicle_data_notification.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/commands/mobile/on_vehicle_data_notification.cc b/src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/commands/mobile/on_vehicle_data_notification.cc
index f8553c84f8..adf894ee94 100644
--- a/src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/commands/mobile/on_vehicle_data_notification.cc
+++ b/src/components/application_manager/rpc_plugins/vehicle_info_plugin/src/commands/mobile/on_vehicle_data_notification.cc
@@ -72,7 +72,7 @@ void OnVehicleDataNotification::Run() {
for (; vehicle_data.end() != it; ++it) {
if (true == (*message_)[strings::msg_params].keyExists(it->first)) {
- LOG4CXX_ERROR(logger_, "vehicle_data nanme" << it->first);
+ LOG4CXX_DEBUG(logger_, "vehicle_data name: '" << it->first << "'");
auto vehicle_data_value =
(*message_)[strings::msg_params][it->first].asInt();