Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 747 Bytes

log-bao.md

File metadata and controls

26 lines (18 loc) · 747 Bytes

log包

log包的作用

log中定义的常量

const (
	Ldate         = 1 << iota     // the date in the local time zone: 2009/01/23
	Ltime                         // the time in the local time zone: 01:23:23
	Lmicroseconds                 // microsecond resolution: 01:23:23.123123.  assumes Ltime.
	Llongfile                     // full file name and line number: /a/b/c/d.go:23
	Lshortfile                    // final file name element and line number: d.go:23. overrides Llongfile
	LUTC                          // if Ldate or Ltime is set, use UTC rather than the local time zone
	LstdFlags     = Ldate | Ltime // initial values for the standard logger
)

使用方式

log.SetFlags(log.Ldate | log.Llongfile)