Skip to content

Commit

Permalink
Added logging statements for visibilty
Browse files Browse the repository at this point in the history
  • Loading branch information
gurman10 committed Jan 3, 2025
1 parent 70fe149 commit 1a13106
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ckanext/bcgov/util/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,12 @@ def get_orgs_form(field = None):
'all_fields': True
}
all_orgs_data = (organization_or_group_list_related(context, data_dict))
log.info('all_orgs_data :')
log.info(all_orgs_data)

orgs = [{'value': org['id'], 'label': org['display_name']} for org in all_orgs_data]
log.info('orgs :')
log.info(orgs)

return orgs

Expand Down

0 comments on commit 1a13106

Please sign in to comment.