Skip to content

Commit

Permalink
fix(plc4go/plc4xbrowser): fix terminal output
Browse files Browse the repository at this point in the history
  • Loading branch information
sruehl committed Aug 7, 2023
1 parent 76ae69a commit f03e07a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plc4go/tools/plc4xbrowser/ui/actions.go
Expand Up @@ -33,7 +33,6 @@ import (
"github.com/rivo/tview"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"os"
"strings"
)

Expand All @@ -52,7 +51,7 @@ func InitSubsystem() {
//With().Caller().Logger().
Output(zerolog.NewConsoleWriter(
func(w *zerolog.ConsoleWriter) {
w.Out = os.Stderr
w.Out = tview.ANSIWriter(consoleOutput)
},
func(w *zerolog.ConsoleWriter) {
w.FormatFieldValue = func(i interface{}) string {
Expand Down

0 comments on commit f03e07a

Please sign in to comment.