Skip to content

Commit 97be0aa

Browse files
author
Jeel Mehta
committed
Editing the location of our custom log
1 parent 538f959 commit 97be0aa

File tree

1 file changed

+3
-1
lines changed
  • sample-apps/python/django_frontend_service/frontend_service_app

1 file changed

+3
-1
lines changed

sample-apps/python/django_frontend_service/frontend_service_app/views.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def run_scheduler():
4747
run_local_root_client_call_recurring_service()
4848

4949
def healthcheck(request):
50-
logger.warn("This is a custom log for validation testing")
5150
return HttpResponse("healthcheck")
5251

5352
def aws_sdk_call(request):
@@ -57,6 +56,9 @@ def aws_sdk_call(request):
5756
testing_id = request.GET.get('testingId', None)
5857
if testing_id is not None:
5958
bucket_name += "-" + testing_id
59+
60+
logger.warning("This is a custom log for validation testing")
61+
6062
s3_client = boto3.client("s3")
6163
try:
6264
s3_client.get_bucket_location(

0 commit comments

Comments
 (0)