Skip to content
This repository was archived by the owner on Feb 27, 2018. It is now read-only.

Commit 2f3c569

Browse files
committed
Merge pull request #381 from mattrobenolt/patch-2
util: add missing newline at end of debug message
2 parents f6d7468 + a7e24a8 commit 2f3c569

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func read(addr string, n int, wait time.Duration) error {
3131
var lastErr error
3232
for i := 0; i < n; i++ {
3333
if B2D.Verbose {
34-
fmt.Printf("Connecting to tcp://%v (attempt #%d)", addr, i)
34+
fmt.Printf("Connecting to tcp://%v (attempt #%d)\n", addr, i)
3535
}
3636
conn, err := net.DialTimeout("tcp", addr, 1*time.Second)
3737
if err != nil {

0 commit comments

Comments
 (0)