accurate and necessary logging only

This commit is contained in:
Baipyrus 2024-04-12 13:59:25 +02:00
parent 82e1a2c904
commit 43ad535543

10
main.go
View File

@ -145,9 +145,6 @@ func sendRequest(client *resty.Client, url string, ins []interface{}) {
return
}
// Debug log json data
log.Printf("Request: %s\n", string(marshal))
// Create instructions form data
req, content := createInsructions(marshal)
if req == nil {
@ -166,9 +163,6 @@ func sendRequest(client *resty.Client, url string, ins []interface{}) {
return
}
// Print response status
log.Printf("Response Status: %s\n", res.Status())
// Unmarshal response
var data Response
err = json.Unmarshal(res.Body(), &data)
@ -178,7 +172,9 @@ func sendRequest(client *resty.Client, url string, ins []interface{}) {
}
// Print response
log.Printf("Success: %t\n", data.Success)
if !data.Success {
log.Fatal(errors.New("Remote server responded unsuccessfully!"))
}
}
func main() {