Skip to content

Commit

Permalink
Fix printf args count
Browse files Browse the repository at this point in the history
  • Loading branch information
nkryuchkov committed Nov 13, 2019
1 parent a227415 commit ca3ac1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/apps/skychat/chat.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func main() {
func listenLoop() {
l, err := chatApp.Listen(netType, port)
if err != nil {
log.Printf("Error listening network %v on port %d: %v\n", netType, port)
log.Printf("Error listening network %v on port %d: %v\n", netType, port, err)
return
}

Expand Down

0 comments on commit ca3ac1c

Please sign in to comment.