Add logging statement for invalid path

This commit is contained in:
Matt Nadareski
2025-02-19 15:19:35 -05:00
parent c171a10ce1
commit 520384f5b9

View File

@@ -114,6 +114,10 @@ namespace SabreTools.DatTools
_staticLogger.User(totalCount, totalCount, basePath); _staticLogger.User(totalCount, totalCount, basePath);
} }
else
{
_staticLogger.Verbose($"Invalid path found: {basePath}");
}
watch.Stop(); watch.Stop();
return true; return true;