Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,7 @@ require (
github.com/google/uuidv1.6.0
github.com/inhies/go-bytesizev0.0.0-20220417184213-4913239db9cf
github.com/jedib0t/go-pretty/v6v6.8.2
github.com/lmittmann/tintv1.1.3
github.com/lmittmann/tintv1.2.0
github.com/mattn/go-colorablev0.1.15
github.com/spf13/cobrav1.10.2
github.com/spf13/pflagv1.0.10
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line numberDiff line numberDiff line change
Expand Up@@ -426,8 +426,8 @@ github.com/ldez/usetesting v0.5.0 h1:3/QtzZObBKLy1F4F8jLuKJiKBjjVFi1IavpoWbmqLwc
github.com/ldez/usetesting v0.5.0/go.mod h1:Spnb4Qppf8JTuRgblLrEWb7IE6rDmUpGvxY3iRrzvDQ=
github.com/leonklingele/grouper v1.1.2 h1:o1ARBDLOmmasUaNDesWqWCIFH3u7hoFlM84YrjT3mIY=
github.com/leonklingele/grouper v1.1.2/go.mod h1:6D0M/HVkhs2yRKRFZUoGjeDy7EZTfFBE9gl4kjmIGkA=
github.com/lmittmann/tint v1.1.3 h1:Hv4EaHWXQr+GTFnOU4VKf8UvAtZgn0VuKT+G0wFlO3I=
github.com/lmittmann/tint v1.1.3/go.mod h1:HIS3gSy7qNwGCj+5oRjAutErFBl4BzdQP6cJZ0NfMwE=
github.com/lmittmann/tint v1.2.0 h1:AogHRHy8HUJUnNJBHJlYa+fR4YY8mko2cnCp67xn9JY=
github.com/lmittmann/tint v1.2.0/go.mod h1:HIS3gSy7qNwGCj+5oRjAutErFBl4BzdQP6cJZ0NfMwE=
github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY=
github.com/lucasb-eyer/go-colorful v1.2.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
github.com/macabu/inamedparam v0.2.0 h1:VyPYpOc10nkhI2qeNUdh3Zket4fcZjEWe35poddBCpE=
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/print/print.go
Original file line numberDiff line numberDiff line change
Expand Up@@ -64,7 +64,7 @@ func NewPrinter(stdIn io.Reader, stdOut, stdErr io.Writer) *Printer {
logW = colorable.NewColorable(f)
}
logger := slog.New(
tint.NewHandler(logW, &tint.Options{AddSource: false, Level: slog.LevelDebug}),
tint.NewTextHandler(logW, &tint.Options{AddSource: false, Level: slog.LevelDebug}),
)
slog.SetDefault(logger)

Expand Down
Loading