You can just use `IO.effect(MDCContext())` if `MDC...
# arrow
s
You can just use
IO.effect(MDCContext())
if
MDCContext
is a
ContinuationInterceptor
and you want to execute on its dispatcher. If it’s not a
ContinuationInterceptor
and you want your code to run on
IO.dispatchers().io()
you can just combine them with
+
as Paco mentioned.