From dddb9f3d288c9249d1083b2ebeed79eae377e6fe Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 2 Jul 2019 09:16:17 -0500 Subject: [PATCH] log file extension not supported --- src/FilterLists.Agent/Features/Lists/DownloadLists.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/FilterLists.Agent/Features/Lists/DownloadLists.cs b/src/FilterLists.Agent/Features/Lists/DownloadLists.cs index 57d6a8aa2..5ce094ac2 100644 --- a/src/FilterLists.Agent/Features/Lists/DownloadLists.cs +++ b/src/FilterLists.Agent/Features/Lists/DownloadLists.cs @@ -90,6 +90,10 @@ private ActionBlock 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) {