Skip to content

Commit

Permalink
Revert unwanted change on logging for vttestserver
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <[email protected]>
  • Loading branch information
frouioui committed Feb 6, 2024
1 parent aae0a6e commit 3941978
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions go/vt/vttest/vtprocess.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import (
"path"
"strings"
"syscall"
"testing"
"time"

"google.golang.org/protobuf/encoding/prototext"
Expand Down Expand Up @@ -142,11 +141,8 @@ func (vtp *VtProcess) WaitStart() (err error) {
vtp.proc.Args = append(vtp.proc.Args, vtp.ExtraArgs...)
vtp.proc.Env = append(vtp.proc.Env, os.Environ()...)
vtp.proc.Env = append(vtp.proc.Env, vtp.Env...)

if testing.Verbose() {
vtp.proc.Stderr = os.Stderr
vtp.proc.Stdout = os.Stdout
}
vtp.proc.Stderr = os.Stderr
vtp.proc.Stdout = os.Stdout

log.Infof("%v %v", strings.Join(vtp.proc.Args, " "))
err = vtp.proc.Start()
Expand Down

0 comments on commit 3941978

Please sign in to comment.