Skip to content

Commit

Permalink
Remove verbosity level
Browse files Browse the repository at this point in the history
  • Loading branch information
bodgit committed Oct 30, 2021
1 parent 0d2c5a3 commit c758990
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gss/gokrb5.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func (c *Client) Generate(msg []byte, t *dns.TSIG) ([]byte, error) {
return nil, dns.ErrSecret
}

c.logger.WithName(t.Hdr.Name).V(1).Info("generate", "seq", ctx.seq)
c.logger.WithName(t.Hdr.Name).Info("generate", "seq", ctx.seq)

token := gssapi.MICToken{
Flags: gssapi.MICTokenFlagAcceptorSubkey,
Expand Down Expand Up @@ -232,7 +232,7 @@ func (c *Client) Verify(stripped []byte, t *dns.TSIG) error {
}
token.Payload = stripped

c.logger.WithName(t.Hdr.Name).V(1).Info("verify", "seq", token.SndSeqNum)
c.logger.WithName(t.Hdr.Name).Info("verify", "seq", token.SndSeqNum)

if err = ctx.ss.check(token.SndSeqNum); err != nil {
return err
Expand Down

0 comments on commit c758990

Please sign in to comment.