# File lib/puppet/configurer.rb, line 173
173:   def send_report(report, trans)
174:     report.finalize_report if trans
175:     puts report.summary if Puppet[:summarize]
176:     report.save if Puppet[:report]
177:   rescue => detail
178:     puts detail.backtrace if Puppet[:trace]
179:     Puppet.err "Could not send report: #{detail}"
180:   end