From d1dd93ee23dad98654d9d185a20c51ff6ccd05e8 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 6 Jun 2023 13:39:41 +0200 Subject: [PATCH] update urls --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 7dac2f0..520bce7 100644 --- a/main.go +++ b/main.go @@ -30,9 +30,9 @@ var dashboardHTML []byte func main() { cfg := ReadConfig() - fmt.Printf("Target is %s", cfg.TargetURL) - fmt.Printf("\nListening on http://localhost:%s", cfg.ProxyPort) - fmt.Printf("\nDashboard on http://localhost:%s", cfg.DashboardPort) + fmt.Printf("Target is %s\n", cfg.TargetURL) + fmt.Printf("Listening on http://127.0.0.1:%s\n", cfg.ProxyPort) + fmt.Printf("Dashboard on http://127.0.0.1:%s\n", cfg.DashboardPort) fmt.Println() srv := NewCaptureService(cfg.MaxCaptures)