()
| 90 | } |
| 91 | |
| 92 | func ExampleWith() { |
| 93 | ctx := slog.With(context.Background(), slog.F("field", 1)) |
| 94 | |
| 95 | l := slog.Make(sloghuman.Sink(os.Stdout)) |
| 96 | l.Info(ctx, "msg") |
| 97 | |
| 98 | // 2019-12-07 20:54:23.986 [INFO] msg field=1} |
| 99 | } |
| 100 | |
| 101 | func ExampleStdlib() { |
| 102 | ctx := slog.With(context.Background(), slog.F("field", 1)) |