Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
fix(logger): show error message and backtrace
Browse files Browse the repository at this point in the history
  • Loading branch information
Issam Hakimi aka Killix committed Dec 5, 2016
1 parent 9f791ef commit 78ad61f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rootfs/opt/fluentd/deis-output/lib/fluent/mixin/deis.rb
Expand Up @@ -49,7 +49,8 @@ def push(producer, value)
producer.write(value)
end
rescue Exception => e
puts "Error:#{map.message}"
puts "Error:#{e.message}"
puts e.backtrace
end
end

Expand Down

0 comments on commit 78ad61f

Please sign in to comment.