Commit 98347d03 authored by Cédric de Saint Martin's avatar Cédric de Saint Martin Committed by Marco Mariani

Don't print partition informations if skipping processing this partition.

parent f18700eb
...@@ -573,10 +573,6 @@ class Slapgrid(object): ...@@ -573,10 +573,6 @@ class Slapgrid(object):
# Try to process it anyway, it may need to be deleted. # Try to process it anyway, it may need to be deleted.
software_path = None software_path = None
self.logger.info(' Software URL: %s' % software_url)
self.logger.info(' Software path: %s' % software_path)
self.logger.info(' Instance path: %s' % instance_path)
periodicity = self.maximum_periodicity periodicity = self.maximum_periodicity
if software_path: if software_path:
# Get periodicity from periodicity file if not forced # Get periodicity from periodicity file if not forced
...@@ -615,6 +611,10 @@ class Slapgrid(object): ...@@ -615,6 +611,10 @@ class Slapgrid(object):
os.remove(timestamp_path) os.remove(timestamp_path)
self.logger.error(traceback.format_exc()) self.logger.error(traceback.format_exc())
self.logger.info(' Software URL: %s' % software_url)
self.logger.info(' Software path: %s' % software_path)
self.logger.info(' Instance path: %s' % instance_path)
local_partition = Partition( local_partition = Partition(
software_path=software_path, software_path=software_path,
instance_path=instance_path, instance_path=instance_path,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment