log file extension not supported

This commit is contained in:
Collin M. Barrett 2019-07-02 09:16:17 -05:00
parent 16dbe8b752
commit dddb9f3d28

View file

@ -90,6 +90,10 @@ private ActionBlock<ListInfo> BuildDownloader(CancellationToken cancellationToke
var command = CommandsByExtension[extension].Invoke(l);
await _mediator.Send(command, cancellationToken);
}
else
{
_logger.LogError($"The file extension of list {l.Id} from {l.ViewUrl} is not supported.");
}
}
catch (HttpRequestException ex)
{