Warn when failing to require plugin instead of hard failure

This commit is contained in:
Chris Roberts 2017-03-22 16:40:42 -07:00
parent b90ba95804
commit 564ed7456d
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ if Vagrant.plugins_enabled?
global_logger.debug("Loading plugin `#{plugin_name}` with slash require: `#{plugin_slash}`")
require plugin_slash
rescue LoadError, Gem::LoadError
raise load_error
global_logger.warn("Failed to load plugin `#{plugin_name}`. Assuming library and moving on.")
end
end
end