Skip to content

Commit

Permalink
Fix generated logger function (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fs02 authored Oct 29, 2022
1 parent 4cdb545 commit b2a9ed8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rel/internal/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var (
shutdowns []func() error
)
func logger(ctx context.Context, op string, message string) func(err error) {
func logger(ctx context.Context, op string, message string, args ...interface{}) func(err error) {
// no op for rel functions.
if strings.HasPrefix(op, "rel-") {
return func(error) {}
Expand Down

0 comments on commit b2a9ed8

Please sign in to comment.