This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
syncthing-arm/util.go
T
Jakob Borg bfe935b5ab REBASE!
2013-12-15 11:43:40 +01:00

8 lines
133 B
Go

package main
import "time"
func timing(name string, t0 time.Time) {
debugf("%s: %.02f ms", name, time.Since(t0).Seconds()*1000)
}