#335 caller skip count. #338

Merged
vtolstov merged 3 commits from kgorbunov/micro:#335 into master 2024-04-15 13:31:15 +03:00
Showing only changes of commit a9426dfea5 - Show all commits

View File

@ -176,3 +176,16 @@ func WithMicroKeys() options.Option {
return nil
}
}
func WithIncCallerSkipCount(n int) options.Option {
return func(src interface{}) error {
c, err := options.Get(src, ".CallerSkipCount")
if err != nil {
return err
}
if err = options.Set(src, c.(int)+n, ".CallerSkipCount"); err != nil {
return err
}
return nil
}
}