We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17cf6a8 commit 6bb258bCopy full SHA for 6bb258b
1 file changed
util/billing.go
@@ -98,13 +98,11 @@ func getArcInstance(arcID string) (ArcInstance, error) {
98
}
99
defer res.Body.Close()
100
body, err := ioutil.ReadAll(res.Body)
101
- fmt.Println("bODY:", body)
102
if err != nil {
103
log.Println("error reading res body: ", err)
104
return arcInstance, err
105
106
err = json.Unmarshal(body, &response)
107
- fmt.Println("RESPONSE:", response)
108
arcInstance.SubscriptionID = response.ArcRecords[0].SubscriptionID
109
110
@@ -160,7 +158,6 @@ func ReportUsage() {
160
158
161
159
log.Println("Unable to fetch arc instance")
162
163
- fmt.Println("THIS IS RESULT", result)
164
165
subID := result.SubscriptionID
166
if subID == "" {
0 commit comments