Exception handing in stats.xls and more debug info

This commit is contained in:
Godwin 2015-09-16 17:15:39 -07:00
parent 2314877f03
commit cca47a6d31

View File

@ -436,7 +436,8 @@ class ConferencesController < ApplicationController
end
@registrations.each do |r|
if r.is_attending
if r && r.is_attending
begin
@total_registrations += 1
@donation_count += 1 if r.registration_fees_paid
@ -484,6 +485,10 @@ class ConferencesController < ApplicationController
:other => r.other || ''
}
end
rescue
logger.info "Error adding row to stats.xls"
logger.info "\t#{r ? r.to_yaml.to_s : 'nil'}"
end
end
end