From 8361cb38163314469416bbf73b64f6d81e8360bd Mon Sep 17 00:00:00 2001 From: Godwin Date: Wed, 16 Sep 2015 17:27:40 -0700 Subject: [PATCH] Error message and backtrace for stats.xls --- app/controllers/conferences_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/conferences_controller.rb b/app/controllers/conferences_controller.rb index a9f7f40..e5f4f39 100644 --- a/app/controllers/conferences_controller.rb +++ b/app/controllers/conferences_controller.rb @@ -487,7 +487,7 @@ class ConferencesController < ApplicationController end rescue => error logger.info "Error adding row to stats.xls: #{error.message}" - logger.info error.backtrace + logger.info error.backtrace.join("\n\t\t") end end end