Skip to content

Commit

Permalink
Remove debug loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwin1111 committed Oct 16, 2023
1 parent 8befb05 commit ce531c9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/fyle/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ def mark_accounting_export_summary_as_synced(expenses: List[Expense]) -> None:
for expense in expenses:
expense.accounting_export_summary['synced'] = True
updated_accounting_export_summary = expense.accounting_export_summary
logger.info('updated_accounting_export_summary - %s', updated_accounting_export_summary)
expense_to_be_updated.append(
Expense(
id=expense.id,
Expand Down Expand Up @@ -256,7 +255,6 @@ def create_generator_and_post_in_batches(accounting_export_summary_batches: List
for batched_payload in accounting_export_summary_batches:
try:
if batched_payload:
logger.info('Accounting Export Summary Payload Workspace ID - %s - Payload - %s', workspace_id, batched_payload)
bulk_post_accounting_export_summary(platform, batched_payload)

batched_expenses = get_batched_expenses(batched_payload, workspace_id)
Expand Down

0 comments on commit ce531c9

Please sign in to comment.