summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/commands.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/commands.go b/cmd/commands.go
index 4eda720..2526e45 100644
--- a/cmd/commands.go
+++ b/cmd/commands.go
@@ -130,7 +130,7 @@ func cmdStart() (int, error) {
// when one of the goroutines unblocks, we're done and can exit
select {
case <-success:
- fmt.Println("Successfully started Caddy")
+ fmt.Printf("Successfully started Caddy (pid=%d)\n", cmd.Process.Pid)
case err := <-exit:
return caddy.ExitCodeFailedStartup,
fmt.Errorf("caddy process exited with error: %v", err)