redactableTimedSet is a wrapper for TimedSet that allows it to be redacted in logs.
| 412 | |
| 413 | // redactableTimedSet is a wrapper for TimedSet that allows it to be redacted in logs. |
| 414 | type redactableTimedSet struct { |
| 415 | set TimedSet |
| 416 | redactorFunc func(interface{}) base.RedactorFunc |
| 417 | } |
| 418 | |
| 419 | // Redact returns the TimedSet as a redacted string for logging. |
| 420 | func (redactorSet redactableTimedSet) Redact() string { |
nothing calls this directly
no outgoing calls
no test coverage detected