Skip to content

Commit

Permalink
Use %v formatting words and remove unnecessary newline (#2802)
Browse files Browse the repository at this point in the history
Signed-off-by: Cassondra Foesch <puellanivis@users.noreply.github.com>
  • Loading branch information
puellanivis committed Feb 14, 2024
1 parent b6c54b7 commit 33633d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interceptors.go
Expand Up @@ -25,7 +25,7 @@ type ConsumerInterceptor interface {
func (msg *ProducerMessage) safelyApplyInterceptor(interceptor ProducerInterceptor) {
defer func() {
if r := recover(); r != nil {
Logger.Printf("Error when calling producer interceptor: %s, %w\n", interceptor, r)
Logger.Printf("Error when calling producer interceptor: %v, %v", interceptor, r)
}
}()

Expand All @@ -35,7 +35,7 @@ func (msg *ProducerMessage) safelyApplyInterceptor(interceptor ProducerIntercept
func (msg *ConsumerMessage) safelyApplyInterceptor(interceptor ConsumerInterceptor) {
defer func() {
if r := recover(); r != nil {
Logger.Printf("Error when calling consumer interceptor: %s, %w\n", interceptor, r)
Logger.Printf("Error when calling consumer interceptor: %v, %v", interceptor, r)
}
}()

Expand Down

0 comments on commit 33633d8

Please sign in to comment.