errplane 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/errplane/black_box.rb +1 -1
- data/lib/errplane/version.rb +1 -1
- metadata +1 -1
data/lib/errplane/black_box.rb
CHANGED
@@ -10,7 +10,7 @@ module Errplane
|
|
10
10
|
{
|
11
11
|
:time => Time.now.to_i,
|
12
12
|
:message => @exception.message,
|
13
|
-
:backtrace => @exception.backtrace,
|
13
|
+
:backtrace => @exception.backtrace || [],
|
14
14
|
:exception_class => @exception.class.to_s,
|
15
15
|
:application_name => Errplane.configuration.application_name,
|
16
16
|
:rails_root => Errplane.configuration.rails_root,
|
data/lib/errplane/version.rb
CHANGED