mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 00:02:20 +02:00
tweak format of report
This commit is contained in:
parent
34ca5ded72
commit
ce46e8b812
1 changed files with 2 additions and 4 deletions
|
@ -89,8 +89,7 @@ void runSend(const char* addressOption, int port, int gap, int size, int report)
|
|||
last = now;
|
||||
|
||||
if (now - lastReport >= (report * MSEC_TO_USEC)) {
|
||||
std::cout << "packet sent gap: " << actualGap << " "
|
||||
<< "gapDifference: " << gapDifferece << " "
|
||||
std::cout << "SEND gap Difference From Expected "
|
||||
<< "min: " << timeGaps.getMin() << " "
|
||||
<< "max: " << timeGaps.getMax() << " "
|
||||
<< "avg: " << timeGaps.getAverage() << " "
|
||||
|
@ -146,8 +145,7 @@ void runReceive(const char* addressOption, int port, int gap, int size, int repo
|
|||
last = now;
|
||||
|
||||
if (now - lastReport >= (report * MSEC_TO_USEC)) {
|
||||
std::cout << "packet received gap:" << actualGap << " "
|
||||
<< "gapDifference: " << gapDifferece << " "
|
||||
std::cout << "RECEIVE gap Difference From Expected "
|
||||
<< "min: " << timeGaps.getMin() << " "
|
||||
<< "max: " << timeGaps.getMax() << " "
|
||||
<< "avg: " << timeGaps.getAverage() << " "
|
||||
|
|
Loading…
Reference in a new issue