summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/TLSProxy/Proxy.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/util/TLSProxy/Proxy.pm b/util/TLSProxy/Proxy.pm
index aaef753cd6..a826cb5257 100644
--- a/util/TLSProxy/Proxy.pm
+++ b/util/TLSProxy/Proxy.pm
@@ -171,6 +171,9 @@ sub start
if ($self->serverflags ne "") {
$execcmd .= " ".$self->serverflags;
}
+ if ($self->debug) {
+ print STDERR "Server command: $execcmd\n";
+ }
exec($execcmd);
}
$self->serverpid($pid);
@@ -232,6 +235,9 @@ sub clientstart
if (defined $self->sessionfile) {
$execcmd .= " -ign_eof";
}
+ if ($self->debug) {
+ print STDERR "Client command: $execcmd\n";
+ }
exec($execcmd);
}
}