Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/main/java/io/github/lambdatest/SmartUISnapshot.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public static void smartuiSnapshot(WebDriver driver, String snapshotName, Map<St
}

} catch (Exception e) {
log.severe(String.format(Constants.Errors.SMARTUI_SNAPSHOT_FAILED, snapshotName));
log.severe(e.getMessage());
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,6 @@ interface Errors {
public static final String FETCH_DOM_FAILED = "fetch DOMSerializer failed";
public static final String POST_SNAPSHOT_FAILED = "Post snapshot failed: %s";
public static final String INVALID_RESPONSE_DATA = "Invalid response from fetchDOMSerializer";
public static final String SMARTUI_SNAPSHOT_FAILED = "SmartUI snapshot failed %s";
}
}