MACAddr adds adds the field key with ha as a net.HardwareAddr MAC address to the context
(key string, ha net.HardwareAddr)
| 530 | |
| 531 | // MACAddr adds adds the field key with ha as a net.HardwareAddr MAC address to the context |
| 532 | func (c Context) MACAddr(key string, ha net.HardwareAddr) Context { |
| 533 | c.l.context = enc.AppendMACAddr(enc.AppendKey(c.l.context, key), ha) |
| 534 | return c |
| 535 | } |
nothing calls this directly
no test coverage detected