Add debug info on ajax errors

This commit is contained in:
Piotr Sarnacki 2015-12-03 17:59:30 +01:00
parent 61e445381c
commit 3827b6b4d8
2 changed files with 6 additions and 0 deletions

View File

@ -20,4 +20,9 @@ Adapter = DS.ActiveModelAdapter.extend
findMany: (store, type, ids) ->
@ajax(@buildURL(type.typeKey), 'GET', data: { ids: ids })
handleResponse: (status, headers, payload) ->
if status > 299
console.log "[ERROR] API responded with an error (#{status}): #{JSON.stringify(payload)}"
return @_super.apply(this, arguments)
`export default Adapter`

View File

@ -68,6 +68,7 @@ ajax = Em.Object.create
options.error = (data, status, xhr) =>
Travis.lookup('controller:flash').pushObject(data.flash) if data?.flash
delete data.flash if data?
console.log "[ERROR] API responded with an error (#{status}): #{JSON.stringify(data)}"
error.apply(this, arguments)
options = $.extend(options, default_options)