(c zapcore.Core)
| 76 | } |
| 77 | |
| 78 | func newRedactingCore(c zapcore.Core) zapcore.Core { |
| 79 | return &redactingCore{Core: c} |
| 80 | } |
| 81 | |
| 82 | // Inner returns the wrapped core. Used by callers that need to compose |
| 83 | // new cores around the same redaction-aware structure (e.g. teeing on a |
no outgoing calls