Skip to content

Commit

Permalink
remove *** from logging statements in ap_get and doap_get
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum committed Oct 17, 2023
1 parent 32669af commit 933d64d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dsp_permissions_scripts/ap/ap_get.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_aps_of_project(
token: str,
) -> list[Ap]:
"""Returns the Administrative Permissions for a project."""
logger.info(f"******* Getting Administrative Permissions of project {shortcode} on server {host} *******")
logger.info(f"Getting Administrative Permissions of project {shortcode} on server {host}")
project_iri = get_project_iri_by_shortcode(
shortcode=shortcode,
host=host,
Expand Down
2 changes: 1 addition & 1 deletion dsp_permissions_scripts/doap/doap_get.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_doaps_of_project(
Optionally, select only the DOAPs that are related to either a group, or a resource class, or a property.
By default, all DOAPs are returned, regardless of their target (target=all).
"""
logger.info(f"******* Getting DOAPs of project {shortcode} on server {host} *******")
logger.info(f"Getting DOAPs of project {shortcode} on server {host}")
project_iri = get_project_iri_by_shortcode(
shortcode=shortcode,
host=host,
Expand Down

0 comments on commit 933d64d

Please sign in to comment.