Revert "Log call creation attempts"

Stephen Paul Weber created

This reverts commit 458513f7a1ec0c91381039163be140009fe86ff5.

Change summary

lib/customer_fwd.rb | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)

Detailed changes

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(*)