mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-02-07 10:17:02 +00:00
18 lines
239 B
Go
18 lines
239 B
Go
package log
|
|
|
|
import (
|
|
"log/slog"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/lmittmann/tint"
|
|
)
|
|
|
|
func init() {
|
|
slog.SetDefault(slog.New(
|
|
tint.NewHandler(os.Stderr, &tint.Options{
|
|
Level: slog.LevelDebug,
|
|
TimeFormat: time.RFC3339,
|
|
}),
|
|
))
|
|
}
|