aider: Update console logger to always display times in UTC.

# Aider chat conversation:

USER: console logger should always display times in utc

ASSISTANT: To ensure that the console logger always displays times in UTC, we need to modify the `Handle` method in `console_handler.go` to use `time.Now().UTC()` instead of `time.Now()`.

Here is the *SEARCH/REPLACE* block:

console_handler.go
```go
<<<<<<< SEARCH
	timestamp := time.Now().Format("2006-01-02T15:04:05.000Z07:00")
=======
	timestamp := time.Now().UTC().Format("2006-01-02T15:04:05.000Z07:00")
>>>>>>> REPLACE
```
This commit is contained in:
Jeffrey Paul 2024-05-14 05:16:01 -07:00
parent b44469d434
commit 47416f00ed
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ func NewConsoleHandler() *ConsoleHandler {
}
func (c *ConsoleHandler) Handle(ctx context.Context, record slog.Record) error {
timestamp := time.Now().Format("2006-01-02T15:04:05.000Z07:00")
timestamp := time.Now().UTC().Format("2006-01-02T15:04:05.000Z07:00")
var colorFunc func(format string, a ...interface{}) string
switch record.Level {