Change time
This commit is contained in:
parent
d2e07e98a5
commit
c97d51c48f
@ -8,6 +8,12 @@ import (
|
||||
"example.com/golang-base/internal/log"
|
||||
)
|
||||
|
||||
// Config uses struct tags to configure the application.
|
||||
// (default) Default value to be used if unset or not defined.
|
||||
// (ignored) Don't process the current tag.
|
||||
// (info) String to be presented to the user on -help use.
|
||||
// (secret) If set to true, hide the value from being output on start-up.
|
||||
// (env) environment variable to be used if not set on command line.
|
||||
type Config struct {
|
||||
// time configuration
|
||||
TimeFormat string `default:"2006-01-02 15:04:05" env:"time_format"`
|
||||
|
@ -4,6 +4,7 @@ import (
|
||||
"context"
|
||||
"log/slog"
|
||||
"os"
|
||||
"time"
|
||||
)
|
||||
|
||||
const (
|
||||
@ -31,6 +32,9 @@ func Init(writer string) {
|
||||
slogOptions := &slog.HandlerOptions{
|
||||
Level: &L.SLogLevel,
|
||||
ReplaceAttr: func(groups []string, a slog.Attr) slog.Attr {
|
||||
if a.Key == slog.TimeKey {
|
||||
a.Value = slog.StringValue(a.Value.Time().Format(time.DateTime))
|
||||
}
|
||||
if a.Key == slog.LevelKey {
|
||||
level := a.Value.Any().(slog.Level)
|
||||
levelLabel, exists := LevelNames[level]
|
||||
|
Loading…
x
Reference in New Issue
Block a user