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));