Skip to content

Commit

Permalink
bug: remove debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
cheleb committed Oct 14, 2024
1 parent 0b1d0ff commit f364895
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,10 +218,9 @@ extension [I, E <: Throwable, O](
* @return
*/
def apply(payload: I): RIO[SameOriginBackendClient, O] =
ZIO.debug(payload.toString()) *>
ZIO
.service[SameOriginBackendClient]
.flatMap(_.endpointRequestZIO(endpoint)(payload))
ZIO
.service[SameOriginBackendClient]
.flatMap(_.endpointRequestZIO(endpoint)(payload))

/** Call the endpoint with a payload on a different backend than the origin,
* and get a ZIO back.
Expand Down

0 comments on commit f364895

Please sign in to comment.