Log what wasn't handled by wrapper

This commit is contained in:
Chris Roberts 2022-06-20 13:06:14 -07:00
parent 17fc49cf41
commit 3f557e26f1

View File

@ -57,9 +57,8 @@ module Vagrant
begin
@client.get_config(namespace)
rescue => err
val = @root.send(*args)
@logger.warn("failed to get config value, reason: #{err} - returning val: #{val}")
val
@logger.warn("config wrapper failed to process request: #{args} Reason: #{err}")
@root.send(*args)
end
end
end