From 49d21c94d5e8046d8860508b24982478f0a57219 Mon Sep 17 00:00:00 2001 From: Aireil <33433913+Aireil@users.noreply.github.com> Date: Sun, 22 Nov 2020 00:49:18 +0100 Subject: [PATCH] Log in cleanup was missing a property --- Dalamud/Plugin/PluginRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Plugin/PluginRepository.cs b/Dalamud/Plugin/PluginRepository.cs index 29871cc38..6be3e9a95 100644 --- a/Dalamud/Plugin/PluginRepository.cs +++ b/Dalamud/Plugin/PluginRepository.cs @@ -287,7 +287,7 @@ namespace Dalamud.Plugin var sortedVersions = versions.OrderBy(x => int.Parse(x.Name.Replace(".", ""))).ToArray(); for (var i = 0; i < sortedVersions.Length - 1; i++) { - Log.Information("[PLUGINR] Trying to delete old {0} at ", installed.Name, sortedVersions[i].FullName); + Log.Information("[PLUGINR] Trying to delete old {0} at {1}", installed.Name, sortedVersions[i].FullName); try { sortedVersions[i].Delete(true); } catch (Exception ex) {