Skip to content

Commit 4890314

Browse files
handled exception logging
1 parent 35bdab2 commit 4890314

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/snapshotQueue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export default class Queue {
271271

272272
if (!this.ctx.config.delayedUpload && snapshot && snapshot.name && this.snapshotNames.includes(snapshot.name)) {
273273
drop = true;
274-
this.ctx.log.info(`SmartUI snapshot failed; Same snapshot ${snapshot.name} has been encountered with delayedUploads being false`);
274+
this.ctx.log.info(`Skipping duplicate smartUI snapshot ${snapshot.name}, please try with delayedUploads config true to capture duplicate screenshots.`);
275275
}
276276

277277
if (this.ctx.config.delayedUpload && snapshot && snapshot.name && this.snapshotNames.includes(snapshot.name)) {

0 commit comments

Comments
 (0)