# File lib/hiera/backend/eyaml/options.rb, line 23 def self.trace LoggingHelper::trace "Dump of eyaml tool options dict:" LoggingHelper::trace "--------------------------------" @@options.each do |k, v| begin LoggingHelper::trace sprintf "%18s %-18s = %18s %-18s", "(#{k.class.name})", k.to_s, "(#{v.class.name})", v.to_s rescue LoggingHelper::trace sprintf "%18s %-18s = %18s %-18s", "(#{k.class.name})", k.to_s, "(#{v.class.name})", "<unprintable>" # case where v is binary end end LoggingHelper::trace "--------------------------------" end