From 998432faee88b5f676803e380132864ee3e6b021 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Thu, 6 Jan 2022 11:32:02 -0800 Subject: [PATCH] Include source type when failed to reach destination --- plugins/commands/serve/mappers/internal/graph/search.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands/serve/mappers/internal/graph/search.rb b/plugins/commands/serve/mappers/internal/graph/search.rb index 79645b426..347a414ca 100644 --- a/plugins/commands/serve/mappers/internal/graph/search.rb +++ b/plugins/commands/serve/mappers/internal/graph/search.rb @@ -45,7 +45,7 @@ module VagrantPlugins if required_vertices.nil? raise NoPathError, - "Path generation failed to reach destination (#{dst&.type&.inspect})" + "Path generation failed to reach destination (source: #{src} destination: #{dst&.type&.inspect})" end logger.debug("required vertices list generation complete for path #{src} -> #{dst}")