summaryrefslogtreecommitdiff
path: root/networkQuality.go
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2022-08-17 22:07:35 -0400
committerWill Hawkins <[email protected]>2022-08-17 22:07:35 -0400
commit18bcc4fe73bd8245cde001c939b400693a0d9410 (patch)
tree1d38cdb6271153d0bc1ba4ddfc3218722b12ccf7 /networkQuality.go
parent8d7b3f43988f40976c540e64f955fabe3d14d755 (diff)
[Feature] Add TCP information (RTT and Cwnd) to Logging
This patch adds support for logging the underlying RTT and Cwnd of the TCP connection used when doing probes. More work to follow in order to add support for this information on Windows and Darwin.
Diffstat (limited to 'networkQuality.go')
-rw-r--r--networkQuality.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/networkQuality.go b/networkQuality.go
index f20ca7d..53b2817 100644
--- a/networkQuality.go
+++ b/networkQuality.go
@@ -406,7 +406,7 @@ func main() {
if err := extendedStats.IncorporateConnectionStats(downloadDataCollectionResult.LGCs[i].Stats().ConnInfo.Conn); err != nil {
fmt.Fprintf(
os.Stderr,
- "Warning: Could not add extended stats for the connection: %v",
+ "Warning: Could not add extended stats for the connection: %v\n",
err,
)
}