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