keeguon-actionwebservice 3.0.17 → 3.0.17.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -63,18 +63,18 @@ module ActionWebService # :nodoc:
63
63
  end
64
64
  log_request(ws_request, request.raw_post)
65
65
  if exception
66
- log_error(exception) unless logger.nil?
66
+ Rails.logger.warn(exception) unless logger.nil?
67
67
  send_web_service_error_response(ws_request, exception)
68
68
  else
69
69
  send_web_service_response(ws_response, bm.real)
70
70
  end
71
71
  else
72
72
  exception ||= DispatcherError.new("Malformed SOAP or XML-RPC protocol message")
73
- log_error(exception) unless logger.nil?
73
+ Rails.logger.warn(exception) unless logger.nil?
74
74
  send_web_service_error_response(ws_request, exception)
75
75
  end
76
76
  rescue Exception => e
77
- log_error(e) unless logger.nil?
77
+ Rails.logger.warn(e) unless logger.nil?
78
78
  send_web_service_error_response(ws_request, e)
79
79
  end
80
80
 
@@ -155,7 +155,7 @@ module ActionWebService # :nodoc:
155
155
  options = { :type => 'text/xml', :disposition => 'inline' }
156
156
  send_data(to_wsdl, options)
157
157
  rescue Exception => e
158
- log_error(e) unless logger.nil?
158
+ Rails.logger.warn(e) unless logger.nil?
159
159
  end
160
160
  elsif request.post?
161
161
  render :status => 500, :text => 'POST not supported'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: keeguon-actionwebservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.17
4
+ version: 3.0.17.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire: actionwebservice
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-20 00:00:00.000000000 Z
12
+ date: 2012-11-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport