Change log levels of some messages that are useful
This commit is contained in:
parent
e16010041a
commit
2da812bd48
|
@ -41,7 +41,7 @@ module Vagrant
|
|||
# `set` multiple times with the same name will override any previously
|
||||
# set values. In this way, the last set data for a given name wins.
|
||||
def set(name, sources)
|
||||
@logger.debug("Set #{name.inspect} = #{sources.inspect}")
|
||||
@logger.info("Set #{name.inspect} = #{sources.inspect}")
|
||||
|
||||
# Sources should be an array
|
||||
sources = [sources] if !sources.kind_of?(Array)
|
||||
|
@ -72,7 +72,7 @@ module Vagrant
|
|||
# @return [Object] The configuration object. This is different for
|
||||
# each configuration version.
|
||||
def load(order)
|
||||
@logger.debug("Loading configuration in order: #{order.inspect}")
|
||||
@logger.info("Loading configuration in order: #{order.inspect}")
|
||||
|
||||
unknown_sources = @sources.keys - order
|
||||
if !unknown_sources.empty?
|
||||
|
|
|
@ -368,6 +368,8 @@ module Vagrant
|
|||
# loader is cached so that prior Vagrantfiles aren't loaded multiple
|
||||
# times.
|
||||
def initialize_config
|
||||
@logger.info("Initialzing config...")
|
||||
|
||||
home_vagrantfile = nil
|
||||
root_vagrantfile = nil
|
||||
home_vagrantfile = find_vagrantfile(home_path) if home_path
|
||||
|
|
Loading…
Reference in New Issue