File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed
Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ require (
2828 golang.org/x/text v0.14.0
2929)
3030
31+ require (
32+ github.com/mattn/go-colorable v0.1.13 // indirect
33+ github.com/mattn/go-isatty v0.0.17 // indirect
34+ )
35+
3136require (
3237 github.com/alessio/shellescape v1.4.2 // indirect
3338 github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ github.com/lmittmann/tint v1.0.4 h1:LeYihpJ9hyGvE0w+K2okPTGUdVLfng1+nDNVR4vWISc=
3838github.com/lmittmann/tint v1.0.4 /go.mod h1:HIS3gSy7qNwGCj+5oRjAutErFBl4BzdQP6cJZ0NfMwE =
3939github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY =
4040github.com/magiconair/properties v1.8.7 /go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0 =
41+ github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA =
42+ github.com/mattn/go-colorable v0.1.13 /go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg =
43+ github.com/mattn/go-isatty v0.0.16 /go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM =
44+ github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng =
45+ github.com/mattn/go-isatty v0.0.17 /go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM =
4146github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZgg3U =
4247github.com/mattn/go-runewidth v0.0.15 /go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w =
4348github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY =
@@ -124,6 +129,7 @@ golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA=
124129golang.org/x/mod v0.17.0 /go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c =
125130golang.org/x/oauth2 v0.19.0 h1:9+E/EZBCbTLNrbN35fHv/a/d/mOBatymz1zbtQrXpIg =
126131golang.org/x/oauth2 v0.19.0 /go.mod h1:vYi7skDa1x015PmRRYZ7+s1cWyPgrPiSYRe4rnsexc8 =
132+ golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
127133golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y =
128134golang.org/x/sys v0.17.0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
129135golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ =
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import (
1111 "strings"
1212
1313 "github.com/lmittmann/tint"
14+ "github.com/mattn/go-colorable"
1415 "github.com/spf13/cobra"
1516 "github.com/spf13/viper"
1617 "github.com/stackitcloud/stackit-cli/internal/pkg/config"
@@ -38,7 +39,10 @@ type Printer struct {
3839
3940// Creates a new printer, including setting up the default logger.
4041func NewPrinter () * Printer {
41- logger := slog .New (tint .NewHandler (os .Stderr , & tint.Options {AddSource : false , Level : slog .LevelDebug }))
42+ w := os .Stderr
43+ logger := slog .New (
44+ tint .NewHandler (colorable .NewColorable (w ), & tint.Options {AddSource : false , Level : slog .LevelDebug }),
45+ )
4246 slog .SetDefault (logger )
4347
4448 return & Printer {}
You can’t perform that action at this time.
0 commit comments