예제 #1
0
파일: gr1.go 프로젝트: vimer/VI.test
func routine(name string, delay time.Duration) {

	t0 := time.Now()
	debug.Debug(name, " start at ", t0)

	time.Sleep(delay)

	t1 := time.Now()
	debug.Debug(name, " end at ", t1)

	debug.Debug(name, " lasted ", t1.Sub(t0))
}
예제 #2
0
파일: log.go 프로젝트: vimer/VI.test
func main() {
	akita.Debug("helladsadsdo")
	akita.Debug("helladsadsdo")
}