logpolicy: add debug knob to force logging time to terminal
parent
86c271caba
commit
6cc6e251a9
|
@ -315,6 +315,9 @@ func New(collection string) *Policy {
|
|||
} else {
|
||||
lflags = log.LstdFlags
|
||||
}
|
||||
if v, _ := strconv.ParseBool(os.Getenv("TS_DEBUG_LOG_TIME")); v {
|
||||
lflags = log.LstdFlags | log.Lmicroseconds
|
||||
}
|
||||
if runningUnderSystemd() {
|
||||
// If journalctl is going to prepend its own timestamp
|
||||
// anyway, no need to add one.
|
||||
|
|
Loading…
Reference in New Issue