@@ -820,7 +820,7 @@ void MavlinkParameterClient::process_param_value(const mavlink_message_t& messag
820820 item.param_name );
821821
822822 if (!send_set_param_message (item)) {
823- LogErr (" connection send error in retransmit ({})." , item.param_name );
823+ LogErr (" Connection send error in retransmit ({})." , item.param_name );
824824 _work_queue.pop_front ();
825825 if (!_work_queue.empty ()) {
826826 asio::post (_io_context, [this ] { do_work (); });
@@ -965,7 +965,7 @@ void MavlinkParameterClient::process_param_ext_value(const mavlink_message_t& me
965965 }
966966
967967 if (_parameter_debugging) {
968- LogDebug (" process param_ext_value: {} {}" , safe_param_id, received_value.get_string ());
968+ LogDebug (" Process param_ext_value: {} {}" , safe_param_id, received_value.get_string ());
969969 }
970970
971971 if (_work_queue.empty ()) {
@@ -1068,7 +1068,7 @@ void MavlinkParameterClient::process_param_ext_ack(const mavlink_message_t& mess
10681068 const auto safe_param_id = extract_safe_param_id (param_ext_ack.param_id );
10691069
10701070 if (_parameter_debugging) {
1071- LogDebug (" process param_ext_ack: {} {}" , safe_param_id, (int )param_ext_ack.param_result );
1071+ LogDebug (" Process param_ext_ack: {} {}" , safe_param_id, (int )param_ext_ack.param_result );
10721072 }
10731073
10741074 if (_work_queue.empty ()) {
@@ -1141,7 +1141,7 @@ void MavlinkParameterClient::process_param_error(const mavlink_message_t& messag
11411141 const auto safe_param_id = extract_safe_param_id (param_error.param_id );
11421142
11431143 if (_parameter_debugging) {
1144- LogDebug (" process param_error: {} error code: {}" , safe_param_id, (int )param_error.error );
1144+ LogDebug (" Process param_error: {} error code: {}" , safe_param_id, (int )param_error.error );
11451145 }
11461146
11471147 if (_work_queue.empty ()) {
@@ -1241,7 +1241,7 @@ void MavlinkParameterClient::receive_timeout()
12411241 item.param_name );
12421242
12431243 if (!send_set_param_message (item)) {
1244- LogErr (" connection send error in retransmit ({})." , item.param_name );
1244+ LogErr (" Connection send error in retransmit ({})." , item.param_name );
12451245 _work_queue.pop_front ();
12461246 if (!_work_queue.empty ()) {
12471247 asio::post (_io_context, [this ] { do_work (); });
@@ -1269,9 +1269,9 @@ void MavlinkParameterClient::receive_timeout()
12691269 [&](WorkItemGet& item) {
12701270 if (work->retries_to_do > 0 ) {
12711271 // We're not sure the command arrived, let's retransmit.
1272- LogWarn (" sending again, retries to do: {}" , work->retries_to_do );
1272+ LogWarn (" Sending again, retries to do: {}" , work->retries_to_do );
12731273 if (!send_get_param_message (item)) {
1274- LogErr (" connection send error in retransmit " );
1274+ LogErr (" Connection send error in retransmit " );
12751275 _work_queue.pop_front ();
12761276 if (!_work_queue.empty ()) {
12771277 asio::post (_io_context, [this ] { do_work (); });
@@ -1286,7 +1286,7 @@ void MavlinkParameterClient::receive_timeout()
12861286 }
12871287 } else {
12881288 // We have tried retransmitting, giving up now.
1289- LogErr (" retrying failed" );
1289+ LogErr (" Retrying failed" );
12901290 _work_queue.pop_front ();
12911291 if (!_work_queue.empty ()) {
12921292 asio::post (_io_context, [this ] { do_work (); });
@@ -1372,7 +1372,7 @@ bool MavlinkParameterClient::request_next_missing(uint16_t count)
13721372
13731373 auto next_missing_indices = _param_cache.next_missing_indices (count, chunk_size);
13741374 if (next_missing_indices.empty ()) {
1375- LogErr (" logic error, there should a missing index" );
1375+ LogErr (" Logic error, there should a missing index" );
13761376 return false ;
13771377 }
13781378
0 commit comments