lib/arii/cashier.rb in arii-1.2.2 vs lib/arii/cashier.rb in arii-1.5

- old
+ new

@@ -16,11 +16,12 @@ # def self.verify cache, agent, payload, seed #ARII::Config.log.info(self.class.name) {"Verifying\n\taccess token: #{ARII::Config.access_token}\n\thost: #{ARII::Config.host}\n\tcache: #{cache}\n\tagent: #{agent}\n\tpayload: #{payload}\n\tseed: #{seed}"} begin response = RestClient.post "#{ARII::Config.host}fluxcapacitor/verify.json", {:access_token => ARII::Config.access_token, :agent => agent[:identifier], :cache => cache, :payload => payload, :seed => seed} + rescue Exception => e - ARII::Config.log.error(self.class.name) { "#{e}" } + ARII::Config.log.error(self.class.name) { "Cache verification error: #{e}\n#{e.backtrace}" } response = {:status => 400, :error => e} end response end end \ No newline at end of file