diff --git a/LineChart.exe b/LineChart.exe index 5747a7e..b0dd399 100644 Binary files a/LineChart.exe and b/LineChart.exe differ diff --git a/LineChart.go b/LineChart.go index 4ea0109..a879269 100644 --- a/LineChart.go +++ b/LineChart.go @@ -86,6 +86,7 @@ func eChart(w http.ResponseWriter, r *http.Request) { if r.RequestURI == "/favicon.ico" { return } + fmt.Println() log.Printf("[MSG] Received Request: %s, %s\r\n", r.RemoteAddr, r.RequestURI) defer r.Body.Close() @@ -347,4 +348,5 @@ func eChart(w http.ResponseWriter, r *http.Request) { // ), ) chart.Render(w) + log.Println("[MSG] Finished Render Web Page.") } diff --git a/go.mod b/go.mod index 9a5b173..91d4fd0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module LineChart -go 1.21.1 +go 1.21.0 require ( github.com/go-echarts/go-echarts/v2 v2.3.3