Skip to content

Commit

Permalink
fix: remove console.log from balance repository
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielcastr0 committed Mar 5, 2025
1 parent 1250993 commit d785cd1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/core/infrastructure/midaz/midaz-balance-repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,15 @@ export class MidazBalanceRepository implements BalanceRepository {
accountId
)

console.log('GET RESPONSE', balanceResponse)

const url = `${this.baseUrl}/organizations/${organizationId}/ledgers/${ledgerId}/balances/${balanceResponse?.items[0]?.id}`
console.log('here', url, balance)

const response =
await this.midazHttpFetchUtils.httpMidazAuthFetch<BalanceEntity>({
url,
method: HTTP_METHODS.PATCH,
body: JSON.stringify(balance)
})

console.log('PATCH RESPONSE', response)

return response
}
}

0 comments on commit d785cd1

Please sign in to comment.