[#1437] logger: Add caller skip to log original caller position
All checks were successful
DCO action / DCO (pull_request) Successful in 1m40s
Tests and linters / Run gofumpt (pull_request) Successful in 1m35s
Vulncheck / Vulncheck (pull_request) Successful in 2m14s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m33s
Build / Build Components (pull_request) Successful in 2m48s
Tests and linters / Staticcheck (pull_request) Successful in 3m0s
Tests and linters / gopls check (pull_request) Successful in 3m6s
Tests and linters / Lint (pull_request) Successful in 3m50s
Tests and linters / Tests (pull_request) Successful in 4m43s
Tests and linters / Tests with -race (pull_request) Successful in 6m14s
All checks were successful
DCO action / DCO (pull_request) Successful in 1m40s
Tests and linters / Run gofumpt (pull_request) Successful in 1m35s
Vulncheck / Vulncheck (pull_request) Successful in 2m14s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m33s
Build / Build Components (pull_request) Successful in 2m48s
Tests and linters / Staticcheck (pull_request) Successful in 3m0s
Tests and linters / gopls check (pull_request) Successful in 3m6s
Tests and linters / Lint (pull_request) Successful in 3m50s
Tests and linters / Tests (pull_request) Successful in 4m43s
Tests and linters / Tests with -race (pull_request) Successful in 6m14s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
6b5596a239
commit
8b637b136b
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