1
0
Fork 0

autobuilt files

This commit is contained in:
Wilfried Goesgens 2015-12-16 15:05:43 +01:00
parent 788e59ed39
commit ffc75f9a7a
1 changed files with 7 additions and 0 deletions

View File

@ -97,6 +97,13 @@ ArangoQueryCursor.prototype.toString = function () {
result += ", hasMore: " + (this.hasNext() ? "true" : "false");
if (this.data.hasOwnProperty("extra") &&
this.data.extra.hasOwnProperty("warnings")) {
for (var j = 0; j < this.data.extra.warnings.length; j++) {
result += ", WARNING: " + this.data.extra.warnings[j].code +
" - " + this.data.extra.warnings[j].message
}
}
result += "]";
if (!isCaptureModeActive) {