Skip to content

Commit

Permalink
Fix log formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
emersion committed Jul 18, 2019
1 parent 07e7653 commit 8e883db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smtp/smtp.go
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ func (be *backend) Login(_ *smtp.ConnectionState, username, password string) (sm

// TODO: decrypt private keys in u.Addresses

log.Println("%q logged in", username)
log.Printf("%s logged in", username)

return &session{c, u, privateKeys, addrs}, nil
}
Expand Down

0 comments on commit 8e883db

Please sign in to comment.