Add Method and Url to multi-aborted request message

This commit is contained in:
Brent Erickson 2017-04-05 14:22:37 -07:00
Родитель 0e4f3a843a
Коммит 20733871ea
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "simplerestclients",
"version": "0.0.10",
"version": "0.0.11",
"description": "A library of components for accessing RESTful services with javascript/typescript.",
"author": "David de Regt <David.de.Regt@microsoft.com>",
"scripts": {

Просмотреть файл

@ -169,7 +169,7 @@ export class SimpleWebRequest<T> {
abort(): void {
if (this._aborted) {
assert.ok(false, 'Already aborted request');
assert.ok(false, 'Already aborted ' + this._action + ' request to ' + this._url);
return;
}