| |
| |
| |
|
|
| package slog_test |
|
|
| import ( |
| "context" |
| "log/slog" |
| "net/http" |
| "os" |
| "time" |
| ) |
|
|
| func ExampleGroup() { |
| r, _ := http.NewRequest("GET", "localhost", nil) |
| |
|
|
| logger := slog.New( |
| slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{ |
| ReplaceAttr: func(groups []string, a slog.Attr) slog.Attr { |
| if a.Key == slog.TimeKey && len(groups) == 0 { |
| return slog.Attr{} |
| } |
| return a |
| }, |
| }), |
| ) |
| logger.Info("finished", |
| slog.Group("req", |
| slog.String("method", r.Method), |
| slog.String("url", r.URL.String())), |
| slog.Int("status", http.StatusOK), |
| slog.Duration("duration", time.Second)) |
|
|
| |
| |
| } |
|
|
| func ExampleGroupAttrs() { |
| r, _ := http.NewRequest("POST", "localhost", http.NoBody) |
| |
|
|
| logger := slog.New( |
| slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{ |
| Level: slog.LevelDebug, |
| ReplaceAttr: func(groups []string, a slog.Attr) slog.Attr { |
| if a.Key == slog.TimeKey && len(groups) == 0 { |
| return slog.Attr{} |
| } |
| return a |
| }, |
| }), |
| ) |
|
|
| |
| attrs := []slog.Attr{slog.String("method", r.Method)} |
| attrs = append(attrs, slog.String("url", r.URL.String())) |
|
|
| if r.Method == "POST" { |
| attrs = append(attrs, slog.Int("content-length", int(r.ContentLength))) |
| } |
|
|
| |
| logger.LogAttrs(context.Background(), slog.LevelInfo, |
| "finished", |
| slog.Int("status", http.StatusOK), |
| slog.GroupAttrs("req", attrs...), |
| ) |
|
|
| |
| logger.LogAttrs(context.Background(), slog.LevelInfo, |
| "finished", |
| slog.Int("status", http.StatusOK), |
| slog.GroupAttrs("", attrs...), |
| ) |
|
|
| |
| |
| |
| } |
|
|