Skip to content

Commit

Permalink
chore: use log instead fmt for external scaler (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
JorTurFer authored May 29, 2023
1 parent eab7b75 commit 476df5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/images/external-scaler/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func setValue(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
number := vars["number"]
ExternalScalerValue, _ = strconv.ParseInt(number, 10, 64)
fmt.Printf("new value: %d", ExternalScalerValue)
log.Printf("new value: %d\n", ExternalScalerValue)
}

func RunManagementApi() {
Expand Down

0 comments on commit 476df5e

Please sign in to comment.