From ac5dcca34cdd2339911ce8cbd87700908d2df840 Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Tue, 28 May 2024 13:31:17 -0500 Subject: [PATCH] Revert "Log call creation attempts" This reverts commit 458513f7a1ec0c91381039163be140009fe86ff5. --- lib/customer_fwd.rb | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/customer_fwd.rb b/lib/customer_fwd.rb index 38493a387c3c70e5f1933cee85f6233e7472f0ec..a584fd1888e962b393c929af2337a34e088b647e 100644 --- a/lib/customer_fwd.rb +++ b/lib/customer_fwd.rb @@ -113,13 +113,7 @@ class CustomerFwd cc.call_timeout = timeout.to_i yield cc if block_given? } - log_call(account, request) - end - - def log_call(account, request) - result = BANDWIDTH_VOICE.create_call(account, body: request) - log.info "Create Bandwidth Call", { request: request, result: result } - result.data.call_id + BANDWIDTH_VOICE.create_call(account, body: request).data.call_id end def as_json(*)