Print more logs when a link check fails

This commit is contained in:
Simon Binder 2021-12-26 00:20:34 +01:00
parent 0bad799b82
commit 0a2cc40ba5
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ Future<void> main() async {
for (final result in results.destinations) {
if (result.isBroken) {
print('Broken: $result');
print('Broken: $result (${result.toMap()})');
hasBrokenLinks = true;
}
}