(unixMs int64)
| 108 | } |
| 109 | |
| 110 | func convertMsToDuration(unixMs int64) time.Duration { |
| 111 | return time.Duration(unixMs) * time.Millisecond |
| 112 | } |
| 113 | |
| 114 | func DecorateWithParamName(err error, field string) error { |
| 115 | errTmpl := "invalid parameter %q; %v" |
no outgoing calls