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:
Mikhail Bulash 2017-09-18 17:55:07 +03:00 committed by GitHub
parent 7bb3bd702e
commit 508d94d466
1 changed files with 1 additions and 1 deletions

View File

@ -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