Skip to content

Commit 5225e27

Browse files
committed
remove some debug print statements
1 parent dedb4c4 commit 5225e27

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

internal/provider/allocation_group.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ func (plan *allocationGroupResourceModel) toRequest(ctx context.Context) (groupA
4949
}
5050
groupAllocationRequest.Rules = make([]models.GroupAllocationRule, len(planRules))
5151
for i := range planRules {
52-
fmt.Println("Action is nil", planRules[i].Action.IsNull(), planRules[i].Action.ValueString())
5352
groupAllocationRequest.Rules[i] = models.GroupAllocationRule{
5453
Name: planRules[i].Name.ValueStringPointer(),
5554
Id: planRules[i].Id.ValueStringPointer(),

internal/provider/allocation_group_resource.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ func (r *allocationGroupResource) Update(ctx context.Context, req resource.Updat
210210
)
211211
return
212212
}
213-
fmt.Println("Rules length", len(*allocationResponse.Rules))
214213
diags = state.populate(allocationResponse, r.client, actions, ctx)
215214
resp.Diagnostics.Append(diags...)
216215
if resp.Diagnostics.HasError() {

0 commit comments

Comments
 (0)