Skip to content

Commit

Permalink
Remove newline from op log (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
aldld authored Sep 26, 2022
1 parent a044001 commit be21098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type Conn struct {
}

func (c *Conn) logOp(op string) {
c.log.Printf("%s: connId=%d\n%s", op, c.id, debug.Stack())
c.log.Printf("%s: connId=%d %s", op, c.id, debug.Stack())
}

func (c *Conn) Ping(ctx context.Context) error {
Expand Down

0 comments on commit be21098

Please sign in to comment.