diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-11-09 18:36:00 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-09 18:36:00 -0700 |
| commit | 57d5423d640e234b48ec24bccb88e59302aa5f87 (patch) | |
| tree | 8de67a20a404687d61da7c4ee9cf3828f13db6a1 /Emby.Server.Implementations/Updates/InstallationManager.cs | |
| parent | a7a6a22109cd723a75b8e4f31f3403cb6a28e2cc (diff) | |
| parent | 1d19a5be617c191a731b76e556fae1e395eb3788 (diff) | |
Merge pull request #6816 from Bond-009/warn55
Fix some warnings
Diffstat (limited to 'Emby.Server.Implementations/Updates/InstallationManager.cs')
| -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 4a022c5db..ef95ebf94 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -571,7 +571,7 @@ namespace Emby.Server.Implementations.Updates ?? _pluginManager.Plugins.FirstOrDefault(p => p.Name.Equals(package.Name, StringComparison.OrdinalIgnoreCase) && p.Version.Equals(package.Version)); await PerformPackageInstallation(package, plugin?.Manifest.Status ?? PluginStatus.Active, cancellationToken).ConfigureAwait(false); - _logger.LogInformation(plugin == null ? "New plugin installed: {PluginName} {PluginVersion}" : "Plugin updated: {PluginName} {PluginVersion}", package.Name, package.Version); + _logger.LogInformation("Plugin {Action}: {PluginName} {PluginVersion}", plugin == null ? "installed" : "updated", package.Name, package.Version); return plugin != null; } |
