Skip to content

Commit 6a972c4

Browse files
committed
fix: resolved logger security warning
1 parent 37c5b86 commit 6a972c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sandbox/api/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def get_consent() -> Union[dict, tuple]:
182182
elif (performer_identifier == "9000000025"):
183183
return generate_response_from_example(CONSENT__NO_RELATIONSHIPS, 200)
184184
else:
185-
logger.error(f"Performer identifier {performer_identifier} not does not match examples")
185+
logger.error(f"Performer identifier does not match examples")
186186
return generate_response_from_example(NOT_FOUND, 404)
187187

188188
except Exception as e:

0 commit comments

Comments
 (0)