(args ...interface{})
| 909 | } |
| 910 | |
| 911 | func (s *safePrinter) Print(args ...interface{}) { |
| 912 | s.enhanceArgs(args) |
| 913 | redact.Fprint((*state)(s), args...) |
| 914 | } |
| 915 | |
| 916 | func (s *safePrinter) Printf(format string, args ...interface{}) { |
| 917 | s.enhanceArgs(args) |
nothing calls this directly
no test coverage detected