Method: RequestLogAnalyzer::Aggregator::Summarizer#report_footer
- Defined in:
- lib/request_log_analyzer/aggregator/summarizer.rb
#report_footer(output) ⇒ Object
Generate report footer. output
RequestLogAnalyzer::Output object to output to
144 145 146 147 148 149 150 151 152 153 154 |
# File 'lib/request_log_analyzer/aggregator/summarizer.rb', line 144 def (output) if has_log_ordering_warnings? output.title("Parse warnings") output.puts "Parseable lines were ancountered without a header line before it. It" output.puts "could be that logging is not setup correctly for your application." output.puts "Visit this website for logging configuration tips:" output.puts output.link("http://github.com/wvanbergen/request-log-analyzer/wikis/configure-logging") output.puts end end |