px4_work_queue: adjust status formatting to accommodate longer names (eg mc_autotune_attitude_control)

This commit is contained in:
Daniel Agar
2021-10-04 14:58:42 -04:00
parent 98c7f664c1
commit beb358a344
3 changed files with 3 additions and 3 deletions
@@ -72,7 +72,7 @@ void ScheduledWorkItem::ScheduleClear()
void ScheduledWorkItem::print_run_status()
{
if (_call.period > 0) {
PX4_INFO_RAW("%-26s %8.1f Hz %12.0f us (%" PRId64 " us)\n", _item_name, (double)average_rate(),
PX4_INFO_RAW("%-29s %8.1f Hz %12.0f us (%" PRId64 " us)\n", _item_name, (double)average_rate(),
(double)average_interval(), _call.period);
} else {