(name string, args ...any)
| 16 | } |
| 17 | |
| 18 | func (t traced) trace(name string, args ...any) { |
| 19 | level.Debug(util_log.Logger).Log("msg", fmt.Sprintf("%s: %#v", name, args)) |
| 20 | } |
| 21 | |
| 22 | func (t traced) GetConfig(ctx context.Context, userID string) (cfg userconfig.View, err error) { |
| 23 | defer func() { t.trace("GetConfig", userID, cfg, err) }() |
no test coverage detected