mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-19 06:01:36 +03:00
bb4a4edaab
* Switch downloads to use neilotoole/streamcache.
22 lines
438 B
Go
22 lines
438 B
Go
// Package lgt provides a mechanism for getting a *slog.Logger
|
|
// that outputs to testing.T. See lgt.New.
|
|
package lgt
|
|
|
|
import (
|
|
"io"
|
|
"log/slog"
|
|
|
|
"github.com/neilotoole/slogt"
|
|
|
|
"github.com/neilotoole/sq/libsq/core/lg/devlog"
|
|
)
|
|
|
|
func init() { //nolint:gochecknoinits
|
|
slogt.Default = slogt.Factory(func(w io.Writer) slog.Handler {
|
|
return devlog.NewHandler(w, slog.LevelDebug)
|
|
})
|
|
}
|
|
|
|
// New delegates to slogt.New.
|
|
var New = slogt.New
|