Skip to content

Commit ea01f1f

Browse files
authored
Merge pull request #247 from reportportal/develop
Release 5.5.7
2 parents 99917bb + 1f458b0 commit ea01f1f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
### Changed
2+
- Launch start debug logging improved.
13

24
## [5.5.6] - 2025-11-18
35
### Security

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.5.6
1+
5.5.7-SNAPSHOT

lib/report-portal-client.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ class RPClient {
196196
const tempId = this.getUniqId();
197197

198198
if (launchDataRQ.id) {
199+
this.logDebug(`Use existing launch with tempId ${tempId}`, launchDataRQ);
199200
this.map[tempId] = this.getNewItemObj((resolve) => resolve(launchDataRQ));
200201
this.map[tempId].realId = launchDataRQ.id;
201202
this.launchUuid = launchDataRQ.id;
@@ -213,7 +214,7 @@ class RPClient {
213214

214215
this.map[tempId] = this.getNewItemObj((resolve, reject) => {
215216
const url = 'launch';
216-
this.logDebug(`Start launch with tempId ${tempId}`, launchDataRQ);
217+
this.logDebug(`Start launch with tempId ${tempId}`, launchData);
217218
this.restClient.create(url, launchData).then(
218219
(response) => {
219220
this.map[tempId].realId = response.id;

0 commit comments

Comments
 (0)