Skip to content

Commit 98a0304

Browse files
author
Mark Kendall
committed
Jitterometer: Tweak the log output for readability.
and emphasise the FPS value.
1 parent 4167991 commit 98a0304

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mythtv/libs/libmythtv/jitterometer.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ bool Jitterometer::RecordEndTime()
114114
extra = QString("CPUs: ") + lastcpustats;
115115

116116
LOG(VB_GENERAL, LOG_INFO,
117-
name + QString("Mean: %1 Std.Dev: %2 fps: %3 ")
118-
.arg((int)mean).arg((int)standard_deviation)
119-
.arg(last_fps, 0, 'f', 2) + extra);
117+
name + QString("FPS: %1 Mean: %2 Std.Dev: %3 ")
118+
.arg(last_fps, 7, 'f', 2).arg((int)mean, 5)
119+
.arg((int)standard_deviation, 5) + extra);
120120

121121
count = 0;
122122
return true;

0 commit comments

Comments
 (0)