Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-8009: Reduce verbosity in starting tasks #26

Merged
merged 1 commit into from
Oct 21, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions python/lsst/pipe/base/argumentParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,9 +483,9 @@ def parse_args(self, config, args=None, log=None, override=None):
namespace.log.info("Removing output repo %s for --clobber-output", namespace.output)
shutil.rmtree(namespace.output)

namespace.log.info("input=%s", namespace.input)
namespace.log.info("calib=%s", namespace.calib)
namespace.log.info("output=%s", namespace.output)
namespace.log.debug("input=%s", namespace.input)
namespace.log.debug("calib=%s", namespace.calib)
namespace.log.debug("output=%s", namespace.output)

obeyShowArgument(namespace.show, namespace.config, exit=False)

Expand Down Expand Up @@ -633,7 +633,7 @@ def _applyInitialOverrides(self, namespace):
namespace.log.info("Loading config overrride file %r", filePath)
namespace.config.load(filePath)
else:
namespace.log.info("Config override file does not exist: %r", filePath)
namespace.log.debug("Config override file does not exist: %r", filePath)

def handleCamera(self, namespace):
"""!Perform camera-specific operations before parsing the command line.
Expand Down