Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Upper case user entered log level. #19
Conversation
chuckbutler
reviewed
Jun 8, 2015
| @@ -66,7 +66,7 @@ def configure(): | ||
| # Set the environment variable BUNDLE if the bundle argument was provided. | ||
| if options.bundle: | ||
| os.environ['BUNDLE'] = options.bundle | ||
| - logging.basicConfig(level=options.log_level) | ||
| + logging.basicConfig(level=options.log_level.upper()) |
added a commit
that referenced
this pull request
Jun 8, 2015
AdamIsrael
merged commit 129f7a1
into
juju-solutions:master
Jun 8, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
howbazaar commentedJun 8, 2015
After getting frustrated that the CLI bombed out with '-l debug', I thought I'd fix it.