lib/twilio-ruby/util/configuration.rb in twilio-ruby-5.42.0 vs lib/twilio-ruby/util/configuration.rb in twilio-ruby-5.43.0

- old
+ new

@@ -1,11 +1,11 @@ # frozen_string_literal: true module Twilio module Util class Configuration - attr_accessor :account_sid, :auth_token, :http_client, :region, :edge + attr_accessor :account_sid, :auth_token, :http_client, :region, :edge, :logger def account_sid=(value) @account_sid = value end @@ -21,9 +21,13 @@ @region = value end def edge=(value) @edge = value + end + + def logger=(value) + @logger = value end end end end