fix: update time format in logging to 24-hour format (#3296)

* fix: update time format in logging to 24-hour format

* fix: update time format in logging to use time.TimeOnly

* fix: update logging time format to RFC3339
mine
Ümüt Özalp 2025-05-03 15:50:13 +02:00 committed by GitHub
parent 577a2fb7cc
commit adf95bdebe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ func run(*cobra.Command, []string) error {
slog.SetDefault(slog.New(tint.NewHandler(logFile, &tint.Options{
Level: parseLevel(*k9sFlags.LogLevel),
TimeFormat: time.Kitchen,
TimeFormat: time.RFC3339,
})))
cfg, err := loadConfiguration()