diff --git a/service/fixed/plans/plan_subscriptions/service.go b/service/fixed/plans/plan_subscriptions/service.go index 33e1ca6..5ea8615 100644 --- a/service/fixed/plans/plan_subscriptions/service.go +++ b/service/fixed/plans/plan_subscriptions/service.go @@ -26,7 +26,7 @@ func NewAPI(client HttpClient, logger Log) *API { return &API{client: client, logger: logger} } -// List will list all subscriptions with a specific plan +// List will list all plans upgradable from a given subscription func (a *API) List(ctx context.Context, id int) ([]*plans.GetPlanResponse, error) { var response plans.ListPlansResponse @@ -36,7 +36,7 @@ func (a *API) List(ctx context.Context, id int) ([]*plans.GetPlanResponse, error return nil, err } - a.logger.Printf("Listing fixed plans, all cloud providers, there are %d available", len(response.Plans)) + a.logger.Printf("Listing fixed plans applicable to subscription %d, there are %d available", id, len(response.Plans)) return response.Plans, nil }