Browse Source

remove debug statements

Alexander Belanger 4 years ago
parent
commit
c9fa1f4f59
1 changed files with 0 additions and 4 deletions
  1. 0 4
      ee/billing/ironplans.go

+ 0 - 4
ee/billing/ironplans.go

@@ -353,8 +353,6 @@ func (c *Client) writeRequest(method, path string, data interface{}, dst interfa
 		if err != nil {
 			return err
 		}
-
-		fmt.Println("STR DATA IS", string(strData))
 	}
 
 	req, err := http.NewRequest(
@@ -443,8 +441,6 @@ func (c *Client) ParseProjectUsageFromWebhook(payload []byte) (*cemodels.Project
 		}
 	}
 
-	fmt.Println("USAGE IS", usage)
-
 	return usage, nil
 }