Skip to content

Commit

Permalink
disabled debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohit Chatterjee committed Oct 11, 2024
1 parent fb18b6f commit 7dfbf53
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def read_records(
for tenantid in self.tenantid_list:
for consumer_code in self.consumer_codes[tenantid]:
params = {"tenantId": tenantid, "businessService": "WS", "consumerCodes": consumer_code}
self.logger.info("requesting payments for %s", consumer_code)
# self.logger.info("requesting payments for %s", consumer_code)
paymentstream = MgramsevaStream(
"collection-services/payments/WS/_search", self.headers, self.request_info, self.user_request, params, "Payments"
)
Expand Down Expand Up @@ -429,7 +429,7 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]:
MgramsevaDemands(self.headers, self.request_info, self.user_request, self.config["tenantids"]),
]

# and now we need bills for each consumer
# bills and payments require a list of consumer codes for each tenant
tenantid_to_consumer_codes = {}
for tenantid in self.config["tenantids"]:
tenantid_to_consumer_codes[tenantid] = set()
Expand Down

0 comments on commit 7dfbf53

Please sign in to comment.