From defeb4272187aab1d952ccc8241f2ca112bb40b3 Mon Sep 17 00:00:00 2001 From: Maxwell Salzberg Date: Fri, 16 Sep 2011 15:21:30 -0700 Subject: [PATCH] get some comma seperated resque job logging for method params in hoptoad" --- lib/resque_job_logging.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/resque_job_logging.rb b/lib/resque_job_logging.rb index de61ab996..3402f51a1 100644 --- a/lib/resque_job_logging.rb +++ b/lib/resque_job_logging.rb @@ -37,7 +37,7 @@ module ResqueJobLogging :backtrace => error.backtrace, :parameters => { :job_class => self.name, - :arguments => job_arguments.map!{|a| a.to_s[0..30]}, + :arguments => job_arguments.map!{|a| a.to_s[0..30]}.join(', '), :controller => "Resque", :action => self.name }