summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJared Norman <jared@super.gd>2019-06-25 14:27:13 -0700
committerJared Norman <jared@super.gd>2019-06-25 14:27:13 -0700
commit7d71b5c5c1e8894c70899f1a9ffc9fe3a3d6c810 (patch)
treef063403ff13355168cad0e734d198d1a1b573476
parent2950a77438e5ab6bc62f8404fdf9689a46cfce7b (diff)
Add option to control logging behaviour
-rw-r--r--lib/super_good/solidus_taxjar.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/super_good/solidus_taxjar.rb b/lib/super_good/solidus_taxjar.rb
index 1016397..9318181 100644
--- a/lib/super_good/solidus_taxjar.rb
+++ b/lib/super_good/solidus_taxjar.rb
@@ -16,6 +16,7 @@ module SuperGood
attr_accessor :discount_calculator
attr_accessor :exception_handler
attr_accessor :line_item_tax_label_maker
+ attr_accessor :logging_enabled
attr_accessor :shipping_calculator
attr_accessor :shipping_tax_label_maker
attr_accessor :taxable_address_check
@@ -30,6 +31,7 @@ module SuperGood
Rails.logger.error "An error occurred while fetching TaxJar tax rates - #{e}: #{e.message}"
}
self.line_item_tax_label_maker = ->(taxjar_line_item, spree_line_item) { "Sales Tax" }
+ self.logging_enabled = false
self.shipping_calculator = ->(order) { order.shipment_total }
self.shipping_tax_label_maker = ->(shipment, shipping_tax) { "Sales Tax" }
self.taxable_address_check = ->(address) { true }