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

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
pull/4709/head
BaronGreenback 4 years ago committed by GitHub
parent 63c290f878
commit 8e04e6c837
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -589,7 +589,7 @@ namespace Emby.Server.Implementations.Updates
await PerformPackageInstallation(package, cancellationToken).ConfigureAwait(false);
// 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;
}

Loading…
Cancel
Save