From 512276fa317f180ffda69444dbe868e33d95ec46 Mon Sep 17 00:00:00 2001 From: Raymond Date: Mon, 13 Sep 2021 16:33:38 -0400 Subject: [PATCH] No need to error for this --- Dalamud/Plugin/Internal/PluginManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Plugin/Internal/PluginManager.cs b/Dalamud/Plugin/Internal/PluginManager.cs index ad3014b2f..ccd674196 100644 --- a/Dalamud/Plugin/Internal/PluginManager.cs +++ b/Dalamud/Plugin/Internal/PluginManager.cs @@ -447,8 +447,8 @@ namespace Dalamud.Plugin.Internal if (zipFile.Name.IsNullOrEmpty()) { - Log.Error("zipFile.Name is null or empty"); // Assuming Empty for Directory + Log.Verbose($"ZipFile name is null or empty, treating as a directory: {outputFile.Directory.FullName}"); Directory.CreateDirectory(outputFile.Directory.FullName); continue; }