(value *atomic.Value)
| 13 | ) |
| 14 | |
| 15 | func loadTimestamp(value *atomic.Value) string { |
| 16 | if timestamp, ok := value.Load().(string); ok { |
| 17 | return timestamp |
| 18 | } |
| 19 | |
| 20 | return "" |
| 21 | } |
| 22 | |
| 23 | // defaultErrPadding is the initial column width used by the default access-log |
| 24 | // formatter to align the request path against the optional error suffix. The |