Skip to content

Commit

Permalink
chore(port-forward): Decrease log message verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Oct 10, 2023
1 parent 61fa385 commit a4f677a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/actions/port_forward/port_forward.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func (a PortForward) Run(ctx context.Context) error {
log.WithFields(log.Fields{
"namespace": a.Client.Namespace,
"name": "pod/" + a.DbPod.Name,
}).Info("setting up port forward")
}).Debug("setting up port forward")

hostUrl, err := url.Parse(a.Client.ClientConfig.Host)
if err != nil {
Expand Down Expand Up @@ -54,7 +54,7 @@ func (a PortForward) Run(ctx context.Context) error {
log.WithFields(log.Fields{
"local": a.LocalPort,
"remote": a.Port,
}).Info("port forward is ready")
}).Debug("port forward is ready")
t := table.NewWriter()
t.SetOutputMirror(os.Stdout)
t.SetTitle(a.Namespace + " database")
Expand Down

0 comments on commit a4f677a

Please sign in to comment.