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

8 lines
133 B
Go
Raw Normal View History

2013-12-15 11:43:31 +01:00
package main
import "time"
func timing(name string, t0 time.Time) {
debugf("%s: %.02f ms", name, time.Since(t0).Seconds()*1000)
}