diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-05-24 15:53:17 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2020-05-24 15:53:17 +0900 |
| commit | 6d3e5d86626fb4d3ac80ad52b9446522ddfc9047 (patch) | |
| tree | 3ca21baaf15cbef4a6628705179d6be56143c31c | |
| parent | 7972daaba43f48e5047f232f0ec1475fc8648b16 (diff) | |
update error log for plugin download
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index 5312e0ef1..9a49ac86c 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -350,7 +350,7 @@ namespace Emby.Server.Implementations.Updates var extension = Path.GetExtension(package.SourceUrl); if (!string.Equals(extension, ".zip", StringComparison.OrdinalIgnoreCase)) { - _logger.LogError("Only zip packages are supported. {Filename} is not a zip archive.", package.SourceUrl); + _logger.LogError("Only zip packages are supported. {SourceUrl} is not a zip archive.", package.SourceUrl); return; } |
