diff options
author | Matthew Holt <[email protected]> | 2020-03-13 13:02:47 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2020-03-13 13:04:10 -0600 |
commit | 6cbd93736fcd2e202fb4d5cfc3f9dd45b6121b0b (patch) | |
tree | 43c67b6de541552e5cb3a6e10029c035693369d4 /cmd/commandfuncs.go | |
parent | c4472363579e26485fdfc01f4fd79b86d44acd86 (diff) | |
download | caddy-6cbd93736fcd2e202fb4d5cfc3f9dd45b6121b0b.tar.gz caddy-6cbd93736fcd2e202fb4d5cfc3f9dd45b6121b0b.zip |
Minor tweaksv2.0.0-beta.16
Diffstat (limited to 'cmd/commandfuncs.go')
-rw-r--r-- | cmd/commandfuncs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/commandfuncs.go b/cmd/commandfuncs.go index 12d25868f..6ef6821de 100644 --- a/cmd/commandfuncs.go +++ b/cmd/commandfuncs.go @@ -131,7 +131,7 @@ func cmdStart(fl Flags) (int, error) { // when one of the goroutines unblocks, we're done and can exit select { case <-success: - fmt.Printf("Successfully started Caddy (pid=%d)\n", cmd.Process.Pid) + fmt.Printf("Successfully started Caddy (pid=%d) - Caddy is running in the background\n", cmd.Process.Pid) case err := <-exit: return caddy.ExitCodeFailedStartup, fmt.Errorf("caddy process exited with error: %v", err) |