Skip to content

Commit 8e883db

Browse files
committed
Fix log formatting
1 parent 07e7653 commit 8e883db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

smtp/smtp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ func (be *backend) Login(_ *smtp.ConnectionState, username, password string) (sm
384384

385385
// TODO: decrypt private keys in u.Addresses
386386

387-
log.Println("%q logged in", username)
387+
log.Printf("%s logged in", username)
388388

389389
return &session{c, u, privateKeys, addrs}, nil
390390
}

0 commit comments

Comments
 (0)