diff --git a/app/models/depp/domain.rb b/app/models/depp/domain.rb index a4d30dd73..c55bf1170 100644 --- a/app/models/depp/domain.rb +++ b/app/models/depp/domain.rb @@ -136,8 +136,6 @@ module Depp # rubocop:disable Metrics/MethodLength # rubocop:disable Metrics/AbcSize def construct_params_from_server_data(data) - Rails.logger.fatal("NNNNN: #{data.class}") - Rails.logger.fatal("NNNNN: #{data}") ret = default_params ret[:name] = data.css('name').text ret[:registrant] = data.css('registrant').text @@ -147,7 +145,6 @@ module Depp end data.css('hostAttr').each_with_index do |x, i| - Rails.logger.fatal("QQQQQ: #{x.css('hostAddr[ip="v4"]')}") ret[:nameservers_attributes][i] = { hostname: x.css('hostName').text, ipv4: Array(x.css('hostAddr[ip="v4"]')).map(&:text).join(','),