From c81dcacabfaebb0f1268d2467eb02a114bdc4b9b Mon Sep 17 00:00:00 2001 From: gowtham Date: Tue, 24 May 2022 15:07:12 +0530 Subject: [PATCH] removed log --- CDC_Backend/APIs/adminViews.py | 1 - 1 file changed, 1 deletion(-) diff --git a/CDC_Backend/APIs/adminViews.py b/CDC_Backend/APIs/adminViews.py index f588c19..4acf47c 100644 --- a/CDC_Backend/APIs/adminViews.py +++ b/CDC_Backend/APIs/adminViews.py @@ -352,7 +352,6 @@ def getStudentApplication(request, id, email, user_type): # search for the application if there or not application = PlacementApplication.objects.filter(student=student, placement=get_object_or_404(Placement, id=data[OPENING_ID])) - logger.info("Get Student Application: " + str(application)) if application: serializer = PlacementApplicationSerializer(application[0]) application_info = {