-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
slogr: add glue code for logging to slog.Handler and with slog.Logger
Interoperability with log/slog from Go 1.21 includes the ability to use a slog.Handler as backend with logr.Logger as frontend and vice versa. This is only the initial step. In particular writing with slog.Logger to a logr.LogSink is not working well (time stamp and call site from record get ignored). Further work is needed to improve this.
- Loading branch information
Showing
6 changed files
with
595 additions
and
1 deletion.
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
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,100 @@ | ||
/* | ||
Copyright 2023 The logr Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
// Package main is an example of using slogr. | ||
package main | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"log/slog" | ||
"os" | ||
|
||
"github.com/go-logr/logr" | ||
"github.com/go-logr/logr/funcr" | ||
"github.com/go-logr/logr/slogr" | ||
) | ||
|
||
type e struct { | ||
str string | ||
} | ||
|
||
func (e e) Error() string { | ||
return e.str | ||
} | ||
|
||
func logrHelper(log logr.Logger, msg string) { | ||
logrHelper2(log, msg) | ||
} | ||
|
||
func logrHelper2(log logr.Logger, msg string) { | ||
log.WithCallDepth(2).Info(msg) | ||
} | ||
|
||
func slogHelper(log *slog.Logger, msg string) { | ||
slogHelper2(log, msg) | ||
} | ||
|
||
func slogHelper2(log *slog.Logger, msg string) { | ||
// slog.Logger has no API for skipping helper functions, so this gets logged as call location. | ||
log.Info(msg) | ||
} | ||
|
||
func main() { | ||
opts := slog.HandlerOptions{ | ||
AddSource: true, | ||
Level: slog.Level(-1), | ||
} | ||
handler := slog.NewJSONHandler(os.Stderr, &opts) | ||
logrLogger := slogr.NewLogr(handler) | ||
logrExample(logrLogger) | ||
|
||
logrLogger = funcr.New( | ||
func(pfx, args string) { fmt.Println(pfx, args) }, | ||
funcr.Options{ | ||
LogCaller: funcr.All, | ||
LogTimestamp: true, | ||
Verbosity: 1, | ||
}) | ||
slogLogger := slog.New(slogr.NewSlogHandler(logrLogger)) | ||
slogExample(slogLogger) | ||
} | ||
|
||
func logrExample(log logr.Logger) { | ||
log = log.WithName("my") | ||
log = log.WithName("logger") | ||
log = log.WithName("name") | ||
log = log.WithValues("saved", "value") | ||
log.Info("1) hello", "val1", 1, "val2", map[string]int{"k": 1}) | ||
log.V(1).Info("2) you should see this") | ||
log.V(1).V(1).Info("you should NOT see this") | ||
log.Error(nil, "3) uh oh", "trouble", true, "reasons", []float64{0.1, 0.11, 3.14}) | ||
log.Error(e{"an error occurred"}, "4) goodbye", "code", -1) | ||
logrHelper(log, "5) thru a helper") | ||
} | ||
|
||
func slogExample(log *slog.Logger) { | ||
// There's no guarantee that this logs the right source code location. | ||
// It works for Go 1.21.0 by compensating in slogr.NewSlogHandler | ||
// for the additional callers, but those might change. | ||
log = log.With("saved", "value") | ||
log.Info("1) hello", "val1", 1, "val2", map[string]int{"k": 1}) | ||
log.Log(context.TODO(), slog.Level(-1), "2) you should see this") | ||
log.Log(context.TODO(), slog.Level(-2), "you should NOT see this") | ||
log.Error("3) uh oh", "trouble", true, "reasons", []float64{0.1, 0.11, 3.14}) | ||
log.Error("4) goodbye", "code", -1, "err", e{"an error occurred"}) | ||
slogHelper(log, "5) thru a helper") | ||
} |
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,105 @@ | ||
//go:build go1.21 | ||
// +build go1.21 | ||
|
||
/* | ||
Copyright 2023 The logr Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package slogr | ||
|
||
import ( | ||
"context" | ||
"log/slog" | ||
|
||
"github.com/go-logr/logr" | ||
) | ||
|
||
type slogHandler struct { | ||
sink logr.LogSink | ||
groupPrefix string | ||
level slog.Level | ||
} | ||
|
||
var _ slog.Handler = &slogHandler{} | ||
|
||
// groupSeparator is used to concatenate WithGroup names and attribute keys. | ||
const groupSeparator = "." | ||
|
||
func (l *slogHandler) Enabled(ctx context.Context, level slog.Level) bool { | ||
return l.sink != nil && (level >= slog.LevelError || l.sink.Enabled(l.levelFromSlog(level))) | ||
} | ||
|
||
func (l *slogHandler) Handle(ctx context.Context, record slog.Record) error { | ||
// No need to check for nil sink here because Handle will only be called | ||
// when Enabled returned true. | ||
|
||
kvList := make([]any, 0, 2*record.NumAttrs()) | ||
record.Attrs(func(attr slog.Attr) bool { | ||
if attr.Key != "" { | ||
kvList = append(kvList, l.addGroupPrefix(attr.Key), attr.Value.Resolve().Any()) | ||
} | ||
return true | ||
}) | ||
if record.Level >= slog.LevelError { | ||
l.sink.Error(nil, record.Message, kvList...) | ||
} else { | ||
level := l.levelFromSlog(record.Level) | ||
l.sink.Info(level, record.Message, kvList...) | ||
} | ||
return nil | ||
} | ||
|
||
func (l *slogHandler) WithAttrs(attrs []slog.Attr) slog.Handler { | ||
if l.sink == nil || len(attrs) == 0 { | ||
return l | ||
} | ||
kvList := make([]any, 0, 2*len(attrs)) | ||
for _, attr := range attrs { | ||
if attr.Key != "" { | ||
kvList = append(kvList, l.addGroupPrefix(attr.Key), attr.Value.Resolve().Any()) | ||
} | ||
} | ||
copy := *l | ||
copy.sink = l.sink.WithValues(kvList...) | ||
return © | ||
} | ||
|
||
func (l *slogHandler) WithGroup(name string) slog.Handler { | ||
if l.sink == nil { | ||
return l | ||
} | ||
copy := *l | ||
copy.groupPrefix = copy.addGroupPrefix(name) | ||
return © | ||
} | ||
|
||
func (l *slogHandler) addGroupPrefix(name string) string { | ||
if l.groupPrefix == "" { | ||
return name | ||
} | ||
return l.groupPrefix + groupSeparator + name | ||
} | ||
|
||
// levelFromSlog adjusts the level by the logger's verbosity and negates it. | ||
// It ensures that the result is >= 0. This is necessary because the result is | ||
// passed to a logr.LogSink and that API did not historically document whether | ||
// levels could be negative or what that meant. | ||
func (l *slogHandler) levelFromSlog(level slog.Level) int { | ||
level -= l.level | ||
if level >= 0 { | ||
return 0 | ||
} | ||
return int(-level) | ||
} |
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,62 @@ | ||
//go:build go1.21 | ||
// +build go1.21 | ||
|
||
/* | ||
Copyright 2023 The logr Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
// Package slogr enables usage of a slog.Handler with logr.Logger as front-end | ||
// API and of a logr.LogSink through the slog.Handler and thus slog.Logger | ||
// APIs. | ||
// | ||
// Both approaches are currently experimental and need further work. | ||
package slogr | ||
|
||
import ( | ||
"log/slog" | ||
|
||
"github.com/go-logr/logr" | ||
) | ||
|
||
// NewLogr returns a logr.Logger which writes to the slog.Handler. | ||
// | ||
// In the output the logr verbosity level gets negated, so V(4) becomes | ||
// slog.LevelDebug. | ||
func NewLogr(handler slog.Handler) logr.Logger { | ||
return logr.New(&slogSink{handler: handler}) | ||
} | ||
|
||
// NewSlogHandler returns a slog.Handler which writes to the same sink as the logr.Logger. | ||
// | ||
// The returned logger writes all records with level >= slog.LevelError as | ||
// error log entries with LogSink.Error, regardless of the verbosity of the | ||
// logr.Logger. The level of all other records gets reduced by the verbosity | ||
// level of the logr.Logger, so a slog.Logger.Info call gets written with | ||
// slog.LevelDebug when using a logr.Logger where verbosity was modified with | ||
// V(4). | ||
func NewSlogHandler(logger logr.Logger) slog.Handler { | ||
// This offset currently (Go 1.21.0) works for slog.New(NewSlogHandler(...)).Info. | ||
// There's no guarantee that the call chain won't change and wrapping | ||
// the handler will also break unwinding, but it's still better than not | ||
// adjusting at all. | ||
logger = logger.WithCallDepth(2) | ||
return &slogHandler{sink: logger.GetSink(), level: slog.Level(logger.GetV())} | ||
} | ||
|
||
// Underlier is implemented by the LogSink returned by NewLogr. | ||
type Underlier interface { | ||
// GetUnderlying returns the Handler used by the LogSink. | ||
GetUnderlying() slog.Handler | ||
} |
Oops, something went wrong.