output needs to be a string

This commit is contained in:
Hyatt 2022-01-10 10:29:29 -06:00
parent 17db6c418b
commit 6414587580
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -213,7 +213,7 @@ func tmpltTPlinkPost(w http.ResponseWriter, r *http.Request) {
// unmarshal body
err = json.Unmarshal(b, &payload)
if err != nil {
log.Printf("[TRACE] Data received: %#v\n", string(b))
log.Printf("[TRACE] Data received:\n--START--\n%s\n--END--\n", string(b))
log.Printf("[INFO] Unable to parse payload from API call: %v\n", err)
tmpltError(w, http.StatusInternalServerError, fmt.Sprintf("Unable to read info from device: %v\n", err))
return