-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: TJ Hoplock <[email protected]>
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Go slog-gokit Adapter | ||
|
||
This library provides a custom slog.Handler that wraps a go-kit Logger, so that loggers created via `slog.New()` chain their log calls to the internal go-kit Logger. | ||
|
||
## Install | ||
|
||
```bash | ||
go get github.com/tjhop/slog-gokit | ||
``` | ||
|
||
## Example | ||
|
||
```go | ||
package main | ||
|
||
import ( | ||
"log/slog" | ||
"os" | ||
|
||
"github.com/go-kit/log" | ||
slgk "github.com/tjhop/slog-gokit" | ||
) | ||
|
||
func main() { | ||
// Take an existing go-kit/log Logger: | ||
gklogger := log.NewLogfmtLogger(os.Stderr) | ||
|
||
// Create an slog Logger that chains log calls to the go-kit/log Logger: | ||
slogger := slog.New(slgk.NewGoKitHandler(gklogger, nil)) | ||
slogger.WithGroup("example_group").With("foo", "bar").Info("hello world") | ||
|
||
// The slog Logger produced logs at slog.LevelInfo by default. | ||
// Optionally create an slog.Leveler to dynamically adjust the level of | ||
// the slog Logger. | ||
lvl := &slog.LevelVar{} | ||
lvl.Set(slog.LevelDebug) | ||
slogger = slog.New(slgk.NewGoKitHandler(gklogger, lvl)) | ||
slogger.WithGroup("example_group").With("foo", "bar").Info("hello world") | ||
} | ||
``` |