[#1437] logger: Add caller skip to log original caller position
Some checks failed
Tests and linters / Run gofumpt (pull_request) Successful in 1m30s
DCO action / DCO (pull_request) Successful in 1m46s
Vulncheck / Vulncheck (pull_request) Successful in 2m20s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m30s
Tests and linters / gopls check (pull_request) Failing after 2m30s
Tests and linters / Lint (pull_request) Failing after 2m48s
Build / Build Components (pull_request) Successful in 2m55s
Tests and linters / Staticcheck (pull_request) Successful in 3m16s
Tests and linters / Tests (pull_request) Successful in 4m29s
Tests and linters / Tests with -race (pull_request) Successful in 6m12s
Some checks failed
Tests and linters / Run gofumpt (pull_request) Successful in 1m30s
DCO action / DCO (pull_request) Successful in 1m46s
Vulncheck / Vulncheck (pull_request) Successful in 2m20s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m30s
Tests and linters / gopls check (pull_request) Failing after 2m30s
Tests and linters / Lint (pull_request) Failing after 2m48s
Build / Build Components (pull_request) Successful in 2m55s
Tests and linters / Staticcheck (pull_request) Successful in 3m16s
Tests and linters / Tests (pull_request) Successful in 4m29s
Tests and linters / Tests with -race (pull_request) Successful in 6m12s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
8988c63abc
commit
4b5c2113c5
1 changed files with 3 additions and 2 deletions
|
@ -131,6 +131,7 @@ func newConsoleLogger(prm *Prm) (*Logger, error) {
|
|||
|
||||
lZap, err := c.Build(
|
||||
zap.AddStacktrace(zap.NewAtomicLevelAt(zap.FatalLevel)),
|
||||
zap.AddCallerSkip(1),
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
@ -167,7 +168,7 @@ func newJournaldLogger(prm *Prm) (*Logger, error) {
|
|||
zapjournald.SyslogPid(),
|
||||
})
|
||||
|
||||
lZap := zap.New(coreWithContext, zap.AddStacktrace(zap.NewAtomicLevelAt(zap.FatalLevel)))
|
||||
lZap := zap.New(coreWithContext, zap.AddStacktrace(zap.NewAtomicLevelAt(zap.FatalLevel)), zap.AddCallerSkip(1))
|
||||
|
||||
l := &Logger{z: lZap, lvl: lvl}
|
||||
prm._log = l
|
||||
|
@ -190,6 +191,6 @@ func (l *Logger) With(fields ...zap.Field) *Logger {
|
|||
|
||||
func NewLoggerWrapper(z *zap.Logger) *Logger {
|
||||
return &Logger{
|
||||
z: z,
|
||||
z: z.WithOptions(zap.AddCallerSkip(1)),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue