diff --git a/main.go b/main.go index 725c6b2..bf5bcb9 100644 --- a/main.go +++ b/main.go @@ -7,6 +7,7 @@ import ( "net/http" "os" "os/signal" + "strings" "sync" "syscall" "time" @@ -45,6 +46,8 @@ func main() { c, stop := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGTERM) defer stop() + fmt.Println(strings.Join(os.Args, ",")) + app := &cli.App{ Name: "rpc-gateway", Usage: "The failover proxy for node providers.",