From 24c64f97c90b68b8d0e8221af3b7741d652ced1d Mon Sep 17 00:00:00 2001 From: jdamick <jeffreydamick@gmail.com> Date: Wed, 13 Mar 2024 09:43:06 -0400 Subject: [PATCH] Change the log flags to be a variable that can be set prior to calling Run (#6546) Signed-off-by: Jeffrey Damick <jdamick@amazon.com> Co-authored-by: Jeffrey Damick <jdamick@amazon.com> --- coremain/run.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/coremain/run.go b/coremain/run.go index 6604a4edc..31b791c8e 100644 --- a/coremain/run.go +++ b/coremain/run.go @@ -45,7 +45,7 @@ func Run() { } log.SetOutput(os.Stdout) - log.SetFlags(0) // Set to 0 because we're doing our own time, with timezone + log.SetFlags(LogFlags) if version { showVersion() @@ -169,6 +169,9 @@ var ( conf string version bool plugins bool + + // LogFlags are initially set to 0 for no extra output + LogFlags int ) // Build information obtained with the help of -ldflags