Browse Source

Update Emby.Server.Implementations/Updates/InstallationManager.cs

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
BaronGreenback 4 years ago
parent
commit
8e04e6c837
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Emby.Server.Implementations/Updates/InstallationManager.cs

+ 1 - 1
Emby.Server.Implementations/Updates/InstallationManager.cs

@@ -589,7 +589,7 @@ namespace Emby.Server.Implementations.Updates
             await PerformPackageInstallation(package, cancellationToken).ConfigureAwait(false);
             await PerformPackageInstallation(package, cancellationToken).ConfigureAwait(false);
 
 
             // Do plugin-specific processing
             // Do plugin-specific processing
-            _logger.LogInformation(plugin == null ? "New plugin installed: {0} {1}" : "Plugin updated: {0} {1}", package.Name, package.Version);
+            _logger.LogInformation(plugin == null ? "New plugin installed: {PluginName} {PluginVersion}" : "Plugin updated: {PluginName} {PluginVersion}", package.Name, package.Version);
 
 
             return plugin != null;
             return plugin != null;
         }
         }