2nd iteration of logging cleanup.
This commit is contained in:
parent
248656b81f
commit
127c05a882
3 changed files with 3 additions and 3 deletions
|
@ -95,7 +95,7 @@ class Explorer(object):
|
|||
out_path directory.
|
||||
|
||||
"""
|
||||
self.log.trace("Running global explorers")
|
||||
self.log.info("Running global explorers")
|
||||
self.transfer_global_explorers()
|
||||
if self.jobs is None:
|
||||
self._run_global_explorers_seq(out_path)
|
||||
|
|
|
@ -145,7 +145,7 @@ class Manifest(object):
|
|||
else:
|
||||
user_supplied = True
|
||||
|
||||
self.log.trace("Running initial manifest " + initial_manifest)
|
||||
self.log.info("Running initial manifest " + initial_manifest)
|
||||
|
||||
if not os.path.isfile(initial_manifest):
|
||||
raise NoInitialManifestError(initial_manifest, user_supplied)
|
||||
|
|
|
@ -240,7 +240,7 @@ class Emulator(object):
|
|||
self.object_source)))
|
||||
raise
|
||||
|
||||
self.log.trace("Recording requirement: %s", requirement)
|
||||
self.log.debug("Recording requirement: %s", requirement)
|
||||
|
||||
# Save the sanitised version, not the user supplied one
|
||||
# (__file//bar => __file/bar)
|
||||
|
|
Loading…
Reference in a new issue