Skip to content

Commit

Permalink
Fix log.Println
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuznet committed Jan 29, 2024
1 parent 8a51443 commit 3a8e8df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hubutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func PredictJSONInput(uri string, rec Record, r *http.Request) ([]byte, string,
defer rsp.Body.Close()
data, err = io.ReadAll(rsp.Body)
if Verbose > 1 {
log.Println("backend %s return %s error %v", rec.Backend, string(data), err)
log.Printf("backend %s return %s error %v", rec.Backend, string(data), err)
}
return data, mtype, err
}
Expand Down

0 comments on commit 3a8e8df

Please sign in to comment.