HttpMiddleware.logger logs a 'Sent HTTP response' message even if the response wasn't sent by Effect. For example, if the Node response has already been sent (using something like https://github.com/PREreview/prereview.org/blob/5113140cd8826d3d3d4519b52cbea6c7f469f59b/src/ExpressHttpApp.ts#L11-L18), Effect carries on rather than failing to resend it. The log entry refers to a response that wasn't sent (in my case, it has an http.status: 204 annotation). Is there a sensible way that Effect could skip logging on these cases?