Skip to content

Commit c8a2f61

Browse files
committed
added debug for modified payload
1 parent 06905b8 commit c8a2f61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

metering/handlers/usage_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def main(event, context):
2020

2121
try:
2222
if validate_request(required_keys, request_dict):
23-
logger.info(f"usage record before modification: {request_dict}")
23+
print(f"usage record before modification: {request_dict}")
2424
usage_detail_dict = usage_record_add_verify_fields(request_dict)
25-
logger.info(f"usage record after modification: {usage_detail_dict}")
25+
print(f"usage record after modification: {usage_detail_dict}")
2626
usage_service.save_usage_details(usage_detail_dict)
2727
response = make_response(
2828
StatusCode.SUCCESS_GET_CODE,

0 commit comments

Comments
 (0)