diff options
| author | Will Hawkins <[email protected]> | 2022-03-18 20:19:21 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2022-03-18 20:19:21 -0400 |
| commit | b93c160e2abe30ef3c3584dfef7c43e95efca771 (patch) | |
| tree | 73ae9667861bbacbb386e17b850222f903bfe347 | |
| parent | 88753564d50eb6d7e91ce2114ff72ed78b8e69cb (diff) | |
Format long times.
| -rw-r--r-- | networkQuality.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/networkQuality.go b/networkQuality.go index 09ec953..86f508d 100644 --- a/networkQuality.go +++ b/networkQuality.go @@ -420,7 +420,11 @@ func main() { // print the banner dt := time.Now().UTC() - fmt.Printf("%s UTC Go Responsiveness to %s...\n", dt.Format("01-02-2006 15:04:05"),configHostPort) + fmt.Printf( + "%s UTC Go Responsiveness to %s...\n", + dt.Format("01-02-2006 15:04:05"), + configHostPort, + ) if len(*profile) != 0 { f, err := os.Create(*profile) @@ -616,7 +620,7 @@ func main() { } } } - + fmt.Printf( "Download: %7.3f Mbps (%7.3f MBps), using %d parallel connections.\n", utilities.ToMbps(downloadSaturation.RateBps), |
