Skip to content

Commit

Permalink
test/devlxd-client: use fmt.Println() where appropriate
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Deziel <[email protected]>
  • Loading branch information
simondeziel committed Aug 30, 2024
1 parent b0f4f41 commit 00d5f6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/devlxd-client/devlxd-client.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func devlxdMonitorStream() {
return
}

fmt.Printf("%s\n", msg)
fmt.Println(msg)
}
}

Expand Down Expand Up @@ -110,7 +110,7 @@ func devlxdMonitorWebsocket(c http.Client) {
return
}

fmt.Printf("%s\n", msg)
fmt.Println(msg)
}
}

Expand Down

0 comments on commit 00d5f6d

Please sign in to comment.