Skip to content

Commit

Permalink
Debug Log is supposed to say the full filename
Browse files Browse the repository at this point in the history
  • Loading branch information
Knuxfan24 committed Apr 17, 2022
1 parent 114413b commit db3109c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sonic-06-Mod-Manager/src/UnifyPatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public static void UninstallCustomFilesystem(ListView.ListViewItemCollection lis
foreach (string file in custom) {
foreach (var fi in di.EnumerateFiles($"*{file}", SearchOption.AllDirectories)) {
try {
Console.WriteLine($"[{DateTime.Now:hh:mm:ss tt}] [Remove] {fi.Name}");
Console.WriteLine($"[{DateTime.Now:hh:mm:ss tt}] [Remove] {fi.FullName}");
File.Delete(fi.FullName); // If custom file is found, erase...
}
catch { }
Expand Down

0 comments on commit db3109c

Please sign in to comment.