@osimatic/helpers-js 1.0.65 → 1.0.66
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.
- package/network.js +1 -1
- package/package.json +1 -1
package/network.js
CHANGED
|
@@ -119,7 +119,7 @@ class HTTPRequest {
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
static logJqueryRequestFailure(jqxhr, status, errorThrown) {
|
|
122
|
-
console.error('Request failure. Status: '+status+' ; HTTP Code: '+jqxhr.
|
|
122
|
+
console.error('Request failure. Status: '+status+' ; HTTP Code: '+jqxhr.status+(null!=errorThrown && ''!==errorThrown ? ' ; Error message: '+errorThrown : ''), jqxhr.responseJSON);
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
static isExpiredToken(response, json) {
|