wrangler 0.1.9 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -208,7 +208,7 @@ module Wrangler
208
208
  if notify_on_exception?(exception, status_code)
209
209
  if notify_with_delayed_job?
210
210
  # don't pass in request as it contains not-easily-serializable stuff
211
- log_error
211
+ log_error "Wrangler sending email notification asynchronously"
212
212
  Wrangler::ExceptionNotifier.send_later(:deliver_exception_notification,
213
213
  exception,
214
214
  exception.to_str,
@@ -217,6 +217,7 @@ module Wrangler
217
217
  status_code,
218
218
  request_data)
219
219
  else
220
+ log_error "Wrangler sending email notification synchronously"
220
221
  Wrangler::ExceptionNotifier.deliver_exception_notification(exception,
221
222
  exception.to_str,
222
223
  proc_name,
data/wrangler.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{wrangler}
8
- s.version = "0.1.9"
8
+ s.version = "0.1.10"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Brian Percival"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wrangler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Percival