diff --git a/command/agent/agent.go b/command/agent/agent.go index 5fe1b8567..819848d66 100644 --- a/command/agent/agent.go +++ b/command/agent/agent.go @@ -61,7 +61,7 @@ type Agent struct { func NewAgent(config *Config, logOutput io.Writer) (*Agent, error) { a := &Agent{ config: config, - logger: log.New(logOutput, "", log.LstdFlags), + logger: log.New(logOutput, "", log.LstdFlags|log.Lmicroseconds), logOutput: logOutput, shutdownCh: make(chan struct{}), }