mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
log og string for invalid URL syntax
This commit is contained in:
parent
91a724598b
commit
c2447cbb5c
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ private TransformBlock<Uri, UrlValidationResult> BuildValidator(CancellationToke
|
|||
if (!u.IsValidUrl())
|
||||
{
|
||||
result.SetBroken();
|
||||
_logger.LogError($"{u.AbsoluteUri}) is not a valid URL.");
|
||||
_logger.LogError($"{u.OriginalString}) is not a valid URL.");
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue