mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(archival): 🐛 fix log statement param
This commit is contained in:
parent
18444c0117
commit
12443645c5
1 changed files with 2 additions and 2 deletions
|
|
@ -40,9 +40,9 @@ public async Task ArchiveFileAsync(
|
|||
if (strategy is default(IFileStreamConversionStrategy))
|
||||
{
|
||||
_logger.LogWarning(
|
||||
"No file stream conversion strategy found for extension {Extension} in target {Target}. Skipping file",
|
||||
"No file stream conversion strategy found for extension {Extension} for target {Target}. Skipping file",
|
||||
segment.SourceExtension,
|
||||
file.Target);
|
||||
file.Target.Name);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue