Skip to content

Commit

Permalink
Forwarding history logging changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hieblmi committed Nov 28, 2022
1 parent c3a7304 commit c794f2e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions logging/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ func Int64(k string, i int64) Field {
return zap.Int64(k, i)
}

func Uint64(k string, i uint64) Field {
return zap.Uint64(k, i)
}

func Error(v error) Field {
return zap.Error(v)
}
Expand Down

0 comments on commit c794f2e

Please sign in to comment.