Tune down default log level

This commit is contained in:
James Page 2016-11-10 10:52:19 +00:00
parent e6b43e1f07
commit 5e330b9b63
2 changed files with 8 additions and 8 deletions

View File

@ -71,21 +71,21 @@ class OpenStackSnap():
''' '''
setup = self.configuration['setup'] setup = self.configuration['setup']
renderer = SnapFileRenderer() renderer = SnapFileRenderer()
LOG.info(setup) LOG.debug(setup)
for directory in setup['dirs']: for directory in setup['dirs']:
dir_name = directory.format(**self.snap_env) dir_name = directory.format(**self.snap_env)
LOG.info('Ensuring directory {} exists'.format(dir_name)) LOG.debug('Ensuring directory {} exists'.format(dir_name))
if not os.path.exists(dir_name): if not os.path.exists(dir_name):
LOG.info('Creating directory {}'.format(dir_name)) LOG.debug('Creating directory {}'.format(dir_name))
os.makedirs(dir_name, 0o750) os.makedirs(dir_name, 0o750)
for template in setup['templates']: for template in setup['templates']:
target = setup['templates'][template] target = setup['templates'][template]
target_file = target.format(**self.snap_env) target_file = target.format(**self.snap_env)
ensure_dir(target_file) ensure_dir(target_file)
LOG.info('Rendering {} to {}'.format(template, LOG.debug('Rendering {} to {}'.format(template,
target_file)) target_file))
with open(target_file, 'w') as tf: with open(target_file, 'w') as tf:
os.fchmod(tf.fileno(), 0o640) os.fchmod(tf.fileno(), 0o640)
tf.write(renderer.render(template, tf.write(renderer.render(template,
@ -100,7 +100,7 @@ class OpenStackSnap():
raise ValueError(_msg) raise ValueError(_msg)
other_args = argv[2:] other_args = argv[2:]
LOG.info(entry_point) LOG.debug(entry_point)
# Build out command to run # Build out command to run
cmd = [entry_point['binary']] cmd = [entry_point['binary']]
@ -127,5 +127,5 @@ class OpenStackSnap():
# Ensure any arguments passed to wrapper are propagated # Ensure any arguments passed to wrapper are propagated
cmd.extend(other_args) cmd.extend(other_args)
LOG.info('Executing command {}'.format(' '.join(cmd))) LOG.debug('Executing command {}'.format(' '.join(cmd)))
subprocess.check_call(cmd) subprocess.check_call(cmd)

View File

@ -33,7 +33,7 @@ def main():
config_path = os.path.join(snap, config_path = os.path.join(snap,
CONFIG_FILE) CONFIG_FILE)
if os.path.exists(config_path): if os.path.exists(config_path):
LOG.info('Using snap wrapper: {}'.format(config_path)) LOG.debug('Using snap wrapper: {}'.format(config_path))
s_openstack = OpenStackSnap(config_path) s_openstack = OpenStackSnap(config_path)
s_openstack.setup() s_openstack.setup()
s_openstack.execute(sys.argv) s_openstack.execute(sys.argv)