From d496fd2d482aff50d59cc6534654fc7a29132d78 Mon Sep 17 00:00:00 2001 From: Nyanmisaka Date: Thu, 3 Dec 2020 21:34:25 +0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Cody Robibero --- Emby.Server.Implementations/ApplicationHost.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index ebba5f02fc..37d6f9db4f 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -776,7 +776,7 @@ namespace Emby.Server.Implementations { foreach (var plugin in Plugins) { - Logger.LogInformation("Loaded plugin: {PluginName} {PluginVersion}", plugin.Name.ToString(), plugin.Version.ToString()); + Logger.LogInformation("Loaded plugin: {PluginName} {PluginVersion}", plugin.Name, plugin.Version); } }