From da9a99cf7c5e21c32689f6d3b104707fec66d5ca Mon Sep 17 00:00:00 2001 From: C9Glax <13404778+C9Glax@users.noreply.github.com> Date: Sun, 5 Feb 2023 20:44:43 +0100 Subject: [PATCH] Better console documentation --- Pathfinding/RegionManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pathfinding/RegionManager.cs b/Pathfinding/RegionManager.cs index ae58c0b..4c48d0b 100644 --- a/Pathfinding/RegionManager.cs +++ b/Pathfinding/RegionManager.cs @@ -44,7 +44,7 @@ namespace OSMImporter private Region LoadRegion(Coordinates coordinates) { string fullPath = Path.Combine(workingDirectory, coordinates.GetRegionHash().ToString()); - Console.WriteLine(fullPath); + Console.WriteLine("Loading {0}", fullPath); if (!File.Exists(fullPath)) { throw new FileNotFoundException(string.Format("Region does not exist: {0}", fullPath));