Log ending_call

Stephen Paul Weber created

Change summary

lib/call_attempt_repo.rb | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

Detailed changes

lib/call_attempt_repo.rb 🔗

@@ -50,7 +50,9 @@ class CallAttemptRepo
 		redis.srem(
 			"jmp_customer_ongoing_calls-#{customer_id}",
 			call_id
-		)
+		).then do |result|
+			log.info "ending_call #{customer_id} #{call_id}", result
+		end
 	end
 
 protected