Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
agrabauskas committed Jan 14, 2021
1 parent 9d62d40 commit 3ad0b76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wlog/svclog/svc1log/svc1logr/svc1logr.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ import (
)

type svc1logr struct {
origin string
origin string
logger svc1log.Logger
}

// New returns a go-logr interface implementation that uses svc1log internally.
func New(logger svc1log.Logger, origin string) logr.Logger {
logger = svc1log.WithParams(logger, svc1log.Origin(origin))
return &svc1logr{
origin: origin,
origin: origin,
logger: logger,
}
}
Expand Down

0 comments on commit 3ad0b76

Please sign in to comment.