Method: Metrocot::BasePattern#log_match_data
- Defined in:
- lib/metrocot.rb
#log_match_data(msg, match_range, match_map) ⇒ Object
230 231 232 233 234 235 236 237 |
# File 'lib/metrocot.rb', line 230 def log_match_data( msg, match_range, match_map ) log("#{msg} #{match_range.describe} map:") if @node_scraper.verbose if ! match_map.nil? && match_map != {} dump_match_map( STDOUT, 0, match_map ) end end end |