diff --git a/src/rust-crypto/OutgoingRequestProcessor.ts b/src/rust-crypto/OutgoingRequestProcessor.ts index ae5ee4465..e551c0dba 100644 --- a/src/rust-crypto/OutgoingRequestProcessor.ts +++ b/src/rust-crypto/OutgoingRequestProcessor.ts @@ -164,13 +164,6 @@ export class OutgoingRequestProcessor { prefix: "", }; - try { - const response = await this.http.authedRequest(method, path, queryParams, body, opts); - logger.info(`rust-crypto: successfully made HTTP request: ${method} ${path}`); - return response; - } catch (e) { - logger.warn(`rust-crypto: error making HTTP request: ${method} ${path}: ${e}`); - throw e; - } + return await this.http.authedRequest(method, path, queryParams, body, opts); } }