We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0d4eb8 commit 92969cbCopy full SHA for 92969cb
1 file changed
lib/report-portal-client.js
@@ -196,6 +196,7 @@ class RPClient {
196
const tempId = this.getUniqId();
197
198
if (launchDataRQ.id) {
199
+ this.logDebug(`Use existing launch with tempId ${tempId}`, launchDataRQ);
200
this.map[tempId] = this.getNewItemObj((resolve) => resolve(launchDataRQ));
201
this.map[tempId].realId = launchDataRQ.id;
202
this.launchUuid = launchDataRQ.id;
@@ -213,7 +214,7 @@ class RPClient {
213
214
215
this.map[tempId] = this.getNewItemObj((resolve, reject) => {
216
const url = 'launch';
- this.logDebug(`Start launch with tempId ${tempId}`, launchDataRQ);
217
+ this.logDebug(`Start launch with tempId ${tempId}`, launchData);
218
this.restClient.create(url, launchData).then(
219
(response) => {
220
this.map[tempId].realId = response.id;
0 commit comments