mirror of
https://github.com/ente-io/ente.git
synced 2025-05-08 14:03:34 +00:00
12 lines
162 B
Go
12 lines
162 B
Go
package utils
|
|
|
|
import (
|
|
"log"
|
|
"time"
|
|
)
|
|
|
|
func TimeTrack(start time.Time, name string) {
|
|
elapsed := time.Since(start)
|
|
log.Printf("%s took %s", name, elapsed)
|
|
}
|