如何在Go中获取有关最后调用的func的信息?

Is it possible to get name of the last called function and args that were passed to?

func main() {
    f(1)
    log.Printf("%s(%s=%d)", // how to paste here "f(arg=1)"? )
}

func f(arg int) {
    ...
}

Is it possible to get name of the last called function and args that were passed to?

No.