remove extra logging

This commit is contained in:
Alex Holliday
2025-05-19 12:29:54 -07:00
parent 20911697cc
commit 4d5c942464
-6
View File
@@ -437,12 +437,6 @@ class NetworkService {
throw new Error(response.data.message);
}
} catch (error) {
this.logger.error({
message: "Error in requestDistributedHttp",
service: this.SERVICE_NAME,
method: "requestDistributedHttp",
stack: error.stack,
});
error.service = this.SERVICE_NAME;
error.method = "requestDistributedHttp";
throw error;