Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 315 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 315 Bytes

go-timings

GoDoc

Several helpers for timing functions or sections of functions. e.g.

func MyFunc() {
  defer timings.Track("MyFunc", time.Now(), someLogger)
  // Do stuff here
  
}