provisioners/shell: Use ui.detail for displaying output
Output format of ui.info method (bold text) makes reading long script outputs really heavy on the eyes. ui.detail is a better match for this type of output.
This commit is contained in:
parent
7bb3bd702e
commit
508d94d466
|
@ -43,7 +43,7 @@ module VagrantPlugins
|
|||
options = {}
|
||||
options[:color] = color if !config.keep_color
|
||||
|
||||
@machine.ui.info(data.chomp, options)
|
||||
@machine.ui.detail(data.chomp, options)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue