Skip to content

Commit

Permalink
Fix two lints introduced by #7666
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongable committed Aug 23, 2024
1 parent e58b7e8 commit a1713af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wfe2/wfe.go
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ func (wfe *WebFrontEndImpl) NewAccount(
return
}
}
wfe.log.Warningf(err.Error())
wfe.log.Warning(err.Error())
}

var newRegistrationSuccessful bool
Expand Down Expand Up @@ -2384,7 +2384,7 @@ func (wfe *WebFrontEndImpl) NewOrder(
return
}
}
wfe.log.Warningf(err.Error())
wfe.log.Warning(err.Error())
}

var newOrderSuccessful bool
Expand Down

0 comments on commit a1713af

Please sign in to comment.