mirror of
https://github.com/syncthing/syncthing.git
synced 2025-12-23 22:18:14 -05:00
8 lines
133 B
Go
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)
|
|
}
|