From 599683f4e3d65e6434070366bd11277d62c0b840 Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Mon, 16 Oct 2023 00:01:09 +0100 Subject: [PATCH] Extra logging stuff --- Bloxstrap/Bootstrapper.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bloxstrap/Bootstrapper.cs b/Bloxstrap/Bootstrapper.cs index d68c50c..fdec480 100644 --- a/Bloxstrap/Bootstrapper.cs +++ b/Bloxstrap/Bootstrapper.cs @@ -1425,6 +1425,8 @@ namespace Bloxstrap string extractPath = Path.Combine(packageFolder, entry.FullName); string? directory = Path.GetDirectoryName(extractPath); + App.Logger.WriteLine(LOG_IDENT, $"Attempting to extract {extractPath}..."); + if (directory is not null) Directory.CreateDirectory(directory);