[#1437] logger: Add caller skip to log original caller position
All checks were successful
Tests and linters / Run gofumpt (pull_request) Successful in 1m24s
DCO action / DCO (pull_request) Successful in 1m46s
Vulncheck / Vulncheck (pull_request) Successful in 2m20s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m40s
Build / Build Components (pull_request) Successful in 2m46s
Tests and linters / gopls check (pull_request) Successful in 2m57s
Tests and linters / Staticcheck (pull_request) Successful in 3m10s
Tests and linters / Lint (pull_request) Successful in 3m55s
Tests and linters / Tests (pull_request) Successful in 4m39s
Tests and linters / Tests with -race (pull_request) Successful in 6m22s

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2024-11-07 14:37:42 +03:00
parent 4f1e856f72
commit ca988524ad
Signed by: dstepanov-yadro
GPG key ID: 237AF1A763293BC0

View file

@ -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)),
}
}