Skip to content

Commit 2ae48c7

Browse files
committed
add debug output for start command
1 parent 54c519e commit 2ae48c7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

proxy/process.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ func (p *Process) start() error {
189189
p.waitStarting.Add(1)
190190
defer p.waitStarting.Done()
191191
cmdContext, ctxCancelUpstream := context.WithCancel(context.Background())
192+
p.proxyLogger.Debugf("<%s> Executing start command: %s", p.ID, strings.Join(args, " "))
192193
p.cmd = exec.CommandContext(cmdContext, args[0], args[1:]...)
193194
p.cmd.Stdout = p.processLogger
194195
p.cmd.Stderr = p.processLogger

0 commit comments

Comments
 (0)