summaryrefslogtreecommitdiff
path: root/lib/super_good/solidus_taxjar
diff options
context:
space:
mode:
authorJared Norman <jared@super.gd>2019-06-25 14:52:23 -0700
committerGitHub <noreply@github.com>2019-06-25 14:52:23 -0700
commit0fbcc56f09fd7d99b552f91750ccb82f6b5633b9 (patch)
tree9b209d630b1d21d4b209686e70d4af95a141f13f /lib/super_good/solidus_taxjar
parent2950a77438e5ab6bc62f8404fdf9689a46cfce7b (diff)
parentf6fbe918e4471898c6060844a5ab581c885a9b49 (diff)
Merge pull request #15 from SuperGoodSoft/logging
Logging!
Diffstat (limited to 'lib/super_good/solidus_taxjar')
-rw-r--r--lib/super_good/solidus_taxjar/api.rb8
-rw-r--r--lib/super_good/solidus_taxjar/api_params.rb7
2 files changed, 14 insertions, 1 deletions
diff --git a/lib/super_good/solidus_taxjar/api.rb b/lib/super_good/solidus_taxjar/api.rb
index 7309a64..0d182ce 100644
--- a/lib/super_good/solidus_taxjar/api.rb
+++ b/lib/super_good/solidus_taxjar/api.rb
@@ -13,7 +13,13 @@ module SuperGood
end
def tax_for(order)
- taxjar_client.tax_for_order APIParams.order_params(order)
+ taxjar_client.tax_for_order(APIParams.order_params(order)).tap do |taxes|
+ next unless SuperGood::SolidusTaxJar.logging_enabled
+
+ Rails.logger.info(
+ "TaxJar response for #{order.number}: #{taxes.to_h.inspect}"
+ )
+ end
end
def tax_rates_for(address)
diff --git a/lib/super_good/solidus_taxjar/api_params.rb b/lib/super_good/solidus_taxjar/api_params.rb
index 7c6942f..5412232 100644
--- a/lib/super_good/solidus_taxjar/api_params.rb
+++ b/lib/super_good/solidus_taxjar/api_params.rb
@@ -8,6 +8,13 @@ module SuperGood
.merge(order_address_params(order.tax_address))
.merge(line_items_params(order.line_items))
.merge(shipping: order.shipment_total)
+ .tap do |params|
+ next unless SuperGood::SolidusTaxJar.logging_enabled
+
+ Rails.logger.info(
+ "TaxJar params: #{params.inspect}"
+ )
+ end
end
def address_params(address)