Browse Source

Plane: stop appending lf to PERF message

master
Peter Barker 8 years ago committed by Francisco Ferreira
parent
commit
378015691b
  1. 2
      ArduPlane/ArduPlane.cpp

2
ArduPlane/ArduPlane.cpp

@ -380,7 +380,7 @@ void Plane::one_second_loop() @@ -380,7 +380,7 @@ void Plane::one_second_loop()
void Plane::log_perf_info()
{
if (scheduler.debug() != 0) {
gcs_send_text_fmt(MAV_SEVERITY_INFO, "PERF: %u/%u Dt=%u/%u Log=%u\n",
gcs_send_text_fmt(MAV_SEVERITY_INFO, "PERF: %u/%u Dt=%u/%u Log=%u",
(unsigned)perf.num_long,
(unsigned)perf.mainLoop_count,
(unsigned)perf.G_Dt_max,

Loading…
Cancel
Save