1 2 3 4 5 6 7 8 9 10 11
package a import "log" func Do() { Do2() } func Do2() { println(log.Ldate | log.Ltime | log.Lshortfile) }