From 3606432f30b3fd163f9d620c06f26e7245a287e7 Mon Sep 17 00:00:00 2001 From: bradanlane Date: Mon, 28 Sep 2015 14:15:41 -0400 Subject: [PATCH] REST services getter/setter for settings completed without debug output --- main/managementinterface.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/managementinterface.go b/main/managementinterface.go index e75c6dbf..9856b110 100644 --- a/main/managementinterface.go +++ b/main/managementinterface.go @@ -125,8 +125,8 @@ func handleSettingsSetRequest(w http.ResponseWriter, r *http.Request) { // for an OPTION method request, we return header without processing. // this insures we are recognized as supporting cross-domain AJAX REST calls if (r.Method == "POST") { - raw, _ := httputil.DumpRequest(r, true) - log.Printf("handleSettingsSetRequest:raw: %s\n", raw) + // raw, _ := httputil.DumpRequest(r, true) + // log.Printf("handleSettingsSetRequest:raw: %s\n", raw) decoder := json.NewDecoder(r.Body); for {