slog-context icon indicating copy to clipboard operation
slog-context copied to clipboard

slog: Context handler

Results 2 slog-context issues
Sort by recently updated
recently updated
newest added

When calling `WithValue` on a `ctx.Context` that already has some attached fields, it will affect the parent context as well. For example: ```go package main import ( "context" "log/slog" "os"...