summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/ponzu/main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go
index 2bee2e5..35b9e8d 100644
--- a/cmd/ponzu/main.go
+++ b/cmd/ponzu/main.go
@@ -110,6 +110,7 @@ func main() {
}
case "run":
+ fmt.Println("Running..")
var addTLS string
if https {
addTLS = "--https"
@@ -128,6 +129,8 @@ func main() {
services = "admin,api"
}
+ fmt.Println("services:", services)
+
serve := exec.Command("./ponzu-server",
fmt.Sprintf("--port=%d", port),
fmt.Sprintf("--httpsport=%d", httpsport),