mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
12 lines
136 B
Go
12 lines
136 B
Go
package elog
|
|
|
|
import (
|
|
. "log"
|
|
"runtime"
|
|
)
|
|
|
|
func TODO() {
|
|
_, file, line, _ := runtime.Caller(1)
|
|
Printf("TODO: %s:%d", file, line)
|
|
}
|