Skip to content
Snippets Groups Projects
Commit 1edf0376 authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

logger: KB/s -> kB/s

parent eabc43d7
No related branches found
No related tags found
No related merge requests found
......@@ -581,7 +581,7 @@ void Logger::run()
if (deltat > 4.0) {
alloc_info = mallinfo();
double throughput = total_bytes / deltat;
PX4_INFO("%8.1lf KB/s, %zu highWater, %d dropouts, %5.3f sec max, free heap: %d",
PX4_INFO("%8.1lf kB/s, %zu highWater, %d dropouts, %5.3f sec max, free heap: %d",
throughput / 1.e3, highWater, dropout_count, max_drop_len, alloc_info.fordblks);
total_bytes = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment