| 107 | } |
| 108 | |
| 109 | type durationParam struct { |
| 110 | Key string |
| 111 | Value time.Duration |
| 112 | } |
| 113 | |
| 114 | func (v durationParam) WriteValueTo(jw *contentlog.JSONWriter) { |
| 115 | jw.Int64Field(v.Key, v.Value.Microseconds()) |
nothing calls this directly
no outgoing calls
no test coverage detected