Skip to content

Commit

Permalink
Add log levels
Browse files Browse the repository at this point in the history
  • Loading branch information
hanslovsky committed Aug 13, 2019
1 parent 24c6def commit 2f147d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jgo/jgo.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def jgo_parser(log_levels = _default_log_levels):
parser.add_argument( '--additional-endpoints', nargs='+', help='Add additional endpoints', default=[], required=False)
parser.add_argument('--ignore-jgorc', action='store_true', help='Ignore ~/.jgorc')
parser.add_argument('--link-type', default=None, type=str, help='How to link from local maven repository into jgo cache. Defaults to the `links\' setting in ~/.jgorc or \'auto\' if not specified.', choices=('hard', 'soft', 'copy', 'auto'))
parser.add_argument('--log-level', default=None, type=str, help='Set log level')
parser.add_argument('--log-level', default=None, type=str, help='Set log level', choices=log_levels)

return parser

Expand Down

0 comments on commit 2f147d2

Please sign in to comment.