Skip to content

Commit

Permalink
Fix duplicate properties in message template warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Stepan Goremykin committed Apr 6, 2023
1 parent 5508efc commit 08ce477
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private async Task ExtractAllAttachmentsInternal(
}
else
{
_logger.LogInformation("ffmpeg attachment extraction completed for {Path} to {Path}", inputPath, outputPath);
_logger.LogInformation("ffmpeg attachment extraction completed for {InputPath} to {OutputPath}", inputPath, outputPath);
}
}

Expand Down Expand Up @@ -378,7 +378,7 @@ private async Task ExtractAttachmentInternal(
}
else
{
_logger.LogInformation("ffmpeg attachment extraction completed for {Path} to {Path}", inputPath, outputPath);
_logger.LogInformation("ffmpeg attachment extraction completed for {InputPath} to {OutputPath}", inputPath, outputPath);
}
}

Expand Down

0 comments on commit 08ce477

Please sign in to comment.