From 57c4de49f2f328fb3f23d197ffc4ef3297f59214 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Mon, 13 May 2019 13:26:47 -0700 Subject: [PATCH] Remove "command" string from logger Since not all triggers are commands, removing the word `command` from the logger so it is not confused with other types of triggers. --- plugins/kernel_v2/config/vm_trigger.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/kernel_v2/config/vm_trigger.rb b/plugins/kernel_v2/config/vm_trigger.rb index 644eabe8a..2595eea49 100644 --- a/plugins/kernel_v2/config/vm_trigger.rb +++ b/plugins/kernel_v2/config/vm_trigger.rb @@ -117,7 +117,7 @@ module VagrantPlugins @command = command.to_sym @ruby_block = UNSET_VALUE - @logger.debug("Trigger defined for command: #{command}") + @logger.debug("Trigger defined for: #{command}") end # Config option `ruby` for a trigger which reads in a ruby block and sets