Remove some extraneous logging

This commit is contained in:
Chris Roberts 2022-06-20 13:07:31 -07:00
parent 3f557e26f1
commit b8fbe1ace5
2 changed files with 1 additions and 4 deletions

View File

@ -69,12 +69,10 @@ module VagrantPlugins
req.func_args,
expect: default_args.keys + [Type::Direct]
)
args = capability_arguments(args)
cap_method = target_cap.method(cap_name)
arg_list = args.join("\n - ")
logger.debug("arguments to be passed to #{cap_name} on plugin #{plugin_name}:\n - #{arg_list}")
result = cap_method.call(*args)
logger.debug("got result #{result}")

View File

@ -135,7 +135,6 @@ module VagrantPlugins
def execute(req, ctx)
with_plugin(ctx, :communicators, broker: broker) do |plugin|
logger.debug("got req: #{req}")
machine, cmd, opts = mapper.funcspec_map(
req, mapper, broker,
expect: [Vagrant::Machine, SDK::Communicator::Command, Type::Options]