Logging All Accessible Services for Debugging
Hello, for debug purpouses, is it possible to log all services that the specific effect can access?
Something like:
Something like:
const printDebugAllServices: Effect.Effect<void, never, unknown> =
Context.getAll() // <---- I need to find this function
.pipe(
andThen((allServices) =>
Effect.logDebug('All services in context:', allServices)
)
)