lib/trello_flow/api/base.rb in trello_flow-2.3.0 vs lib/trello_flow/api/base.rb in trello_flow-2.3.1
- old
+ new
@@ -16,9 +16,13 @@
def self.configure(key:, token:)
self.connection = Faraday.new(url: "https://api.trello.com/1", params: { key: key, token: token }) do |c|
c.request :json
c.use JSONParser
c.adapter Faraday.default_adapter
+
+ # For trello api logging
+ # require "faraday/conductivity"
+ # c.use Faraday::Conductivity::ExtendedLogging
end
self.token = token
end
def position