From 1f922c72408047262c31ad9992b5d379065b0eba Mon Sep 17 00:00:00 2001 From: Shivakumar Date: Fri, 5 Jan 2024 13:12:57 -0800 Subject: [PATCH] Remove print statements --- .../request_api/services/notificationservice.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/request-management-api/request_api/services/notificationservice.py b/request-management-api/request_api/services/notificationservice.py index f3a873c7d..346659bd8 100644 --- a/request-management-api/request_api/services/notificationservice.py +++ b/request-management-api/request_api/services/notificationservice.py @@ -276,14 +276,11 @@ def __preparenotification(self, message, requesttype, notificationtype, userid, notification.idnumber ='U-00' + str(foirequest['requestid']) mutenotification = False - print("notificationtype", notificationtype) # in notificationtype remove space and make lower case notificationtype_format = notificationtype.replace(" ", "").lower() - print ("notificationtype_format", notificationtype_format) if notificationtype_format not in notificationtypes_cache: print('Notification type not found in enum.', notificationtype) else: - print('Notification type found', notificationtype) notification.notificationtypelabel = notificationtypes_cache[notificationtype_format]['notificationtypelabel'] notification.notificationtypeid = notificationtypes_cache[notificationtype_format]['notificationtypeid'] notification.axisnumber = foirequest["axisrequestid"]