Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
celaus committed Oct 31, 2024
1 parent 0462bb9 commit 34cc6e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coralogix/resource_coralogix_enrichment.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func EnrichmentsByID(ctx context.Context, client *cxsdk.EnrichmentsClient, custo
result = append(result, enrichment)
}
}
log.Printf("[INFO] found %s enrichments for ID %v", len(result), customEnrichmentID)
log.Printf("[INFO] found %v enrichments for ID %v", len(result), customEnrichmentID)
return result, nil
}

Expand All @@ -63,7 +63,7 @@ func EnrichmentsByType(ctx context.Context, client *cxsdk.EnrichmentsClient, enr
result = append(result, enrichment)
}
}
log.Printf("[INFO] found %s enrichments for type %v", len(result), enrichmentType)
log.Printf("[INFO] found %v enrichments for type %v", len(result), enrichmentType)

return result, nil
}
Expand Down

0 comments on commit 34cc6e8

Please sign in to comment.