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:
parent
b44469d434
commit
47416f00ed
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue