summaryrefslogtreecommitdiff
path: root/lib/super_good/solidus_taxjar
diff options
context:
space:
mode:
Diffstat (limited to 'lib/super_good/solidus_taxjar')
-rw-r--r--lib/super_good/solidus_taxjar/tax_calculator.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/super_good/solidus_taxjar/tax_calculator.rb b/lib/super_good/solidus_taxjar/tax_calculator.rb
index b9e6444..a3c0690 100644
--- a/lib/super_good/solidus_taxjar/tax_calculator.rb
+++ b/lib/super_good/solidus_taxjar/tax_calculator.rb
@@ -1,11 +1,6 @@
module SuperGood
module SolidusTaxJar
class TaxCalculator
- class_attribute :exception_handler
- self.exception_handler = ->(e) {
- Rails.logger.error "An error occurred while fetching TaxJar tax rates - #{e}: #{e.message}"
- }
-
def self.default_api
::SuperGood::SolidusTaxJar::API.new
end
@@ -129,6 +124,10 @@ module SuperGood
end
end
end
+
+ def exception_handler
+ SuperGood::SolidusTaxJar.exception_handler
+ end
end
end
end