errplane 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/errplane/black_box.rb +1 -3
- data/lib/errplane/version.rb +1 -1
- metadata +1 -1
data/lib/errplane/black_box.rb
CHANGED
@@ -11,9 +11,7 @@ module Errplane
|
|
11
11
|
:time => Time.now.to_i,
|
12
12
|
:message => @exception.message,
|
13
13
|
:backtrace => @exception.backtrace,
|
14
|
-
:
|
15
|
-
:backtrace => exception.backtrace,
|
16
|
-
:exception_class => exception.class.to_s
|
14
|
+
:exception_class => @exception.class.to_s
|
17
15
|
}.to_json
|
18
16
|
end
|
19
17
|
end
|
data/lib/errplane/version.rb
CHANGED