2
0
mirror of https://github.com/etcd-io/etcd.git synced 2024-09-27 06:25:44 +00:00
2014-09-03 09:20:16 -07:00

12 lines
136 B
Go

package elog
import (
. "log"
"runtime"
)
func TODO() {
_, file, line, _ := runtime.Caller(1)
Printf("TODO: %s:%d", file, line)
}