From 7f7c71764d3e15c42d2cc4c948e5bbd94b0a23ee Mon Sep 17 00:00:00 2001 From: Byron Ruth Date: Tue, 28 Feb 2023 12:57:36 -0500 Subject: [PATCH] Change logtime_utc default to false This ensures that the existing, default behavior of the server emitting the local timezone is not changed. --- server/opts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/opts.go b/server/opts.go index 904c9b87..74211dee 100644 --- a/server/opts.go +++ b/server/opts.go @@ -4809,7 +4809,7 @@ func ConfigureOptions(fs *flag.FlagSet, args []string, printVersion, printHelp, fs.BoolVar(&dbgAndTrcAndVerboseTrc, "DVV", false, "Enable Debug and Verbose Trace logging. (Traces system account as well)") fs.BoolVar(&opts.Logtime, "T", true, "Timestamp log entries.") fs.BoolVar(&opts.Logtime, "logtime", true, "Timestamp log entries.") - fs.BoolVar(&opts.LogtimeUTC, "logtime_utc", true, "Timestamps in UTC instead of local timezone.") + fs.BoolVar(&opts.LogtimeUTC, "logtime_utc", false, "Timestamps in UTC instead of local timezone.") fs.StringVar(&opts.Username, "user", _EMPTY_, "Username required for connection.") fs.StringVar(&opts.Password, "pass", _EMPTY_, "Password required for connection.") fs.StringVar(&opts.Authorization, "auth", _EMPTY_, "Authorization token required for connection.")