start moving info log messages to verbose
Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
parent
cef1d215b2
commit
f6e1174adb
4 changed files with 11 additions and 12 deletions
|
|
@ -95,7 +95,7 @@ class Explorer(object):
|
|||
out_path directory.
|
||||
|
||||
"""
|
||||
self.log.info("Running global explorers")
|
||||
self.log.verbose("Running global explorers")
|
||||
self.transfer_global_explorers()
|
||||
if self.jobs is None:
|
||||
self._run_global_explorers_seq(out_path)
|
||||
|
|
@ -168,7 +168,7 @@ class Explorer(object):
|
|||
in the object.
|
||||
|
||||
"""
|
||||
self.log.info("Running type explorers for {}".format(
|
||||
self.log.verbose("Running type explorers for {}".format(
|
||||
cdist_object.cdist_type))
|
||||
self.log.trace("Transfering type explorers for type: %s",
|
||||
cdist_object.cdist_type)
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ class Manifest(object):
|
|||
raise NoInitialManifestError(initial_manifest, user_supplied)
|
||||
|
||||
message_prefix = "initialmanifest"
|
||||
self.log.info("Running initial manifest " + initial_manifest)
|
||||
self.log.verbose("Running initial manifest " + initial_manifest)
|
||||
self.local.run_script(initial_manifest,
|
||||
env=self.env_initial_manifest(initial_manifest),
|
||||
message_prefix=message_prefix,
|
||||
|
|
@ -176,7 +176,7 @@ class Manifest(object):
|
|||
cdist_object.cdist_type.manifest_path)
|
||||
message_prefix = cdist_object.name
|
||||
if os.path.isfile(type_manifest):
|
||||
self.log.info("Running type manifest " + type_manifest)
|
||||
self.log.verbose("Running type manifest " + type_manifest)
|
||||
self.local.run_script(type_manifest,
|
||||
env=self.env_type_manifest(cdist_object),
|
||||
message_prefix=message_prefix,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue