1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
|
# File 'lib/nicinfo/nicinfo_main.rb', line 1063
def show_conformance_messages
return if @config.conf_msgs.size == 0
@config.logger.mesg( "** WARNING: There are problems in the response that might cause some data to discarded. **", NicInfo::AttentionType::ERROR )
i = 1
pad = @config.conf_msgs.length.to_s.length
@config.conf_msgs.each do |msg|
@config.logger.trace( "#{i.to_s.rjust(pad," ")} : #{msg}", NicInfo::AttentionType::ERROR )
i = i + 1
end
end
|