Skip to content

Commit 4ba88ab

Browse files
committed
debug
1 parent 40ed8d4 commit 4ba88ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/pub_integration/lib/src/test_browser.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,13 +242,13 @@ class TestBrowserSession {
242242
if (rs.status == 200 && contentType!.contains('text/html')) {
243243
try {
244244
parseAndValidateHtml(await rs.text);
245-
} catch (e) {
245+
} catch (e, st) {
246246
final url = rs.request.url;
247247
if (url.contains('/documentation/') &&
248248
url.endsWith('-sidebar.html')) {
249249
// ignore dartdoc sidebars
250250
} else {
251-
serverErrors.add('$url returned bad HTML: $e');
251+
serverErrors.add('$url returned bad HTML: $e\n$st');
252252
}
253253
}
254254
}

0 commit comments

Comments
 (0)