mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-05-24 08:44:54 -04:00
Use logging with proper format when warning about improper verbose/quiet usage
This commit is contained in:
7
fdroid
7
fdroid
@@ -69,9 +69,6 @@ def main():
|
||||
|
||||
verbose = any(s in sys.argv for s in ['-v', '--verbose'])
|
||||
quiet = any(s in sys.argv for s in ['-q', '--quiet'])
|
||||
if verbose and quiet:
|
||||
print "Specifying verbose and quiet and the same time is silly"
|
||||
sys.exit(1)
|
||||
|
||||
if verbose:
|
||||
logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.DEBUG)
|
||||
@@ -80,6 +77,10 @@ def main():
|
||||
else:
|
||||
logging.basicConfig(format='%(message)s', level=logging.INFO)
|
||||
|
||||
if verbose and quiet:
|
||||
logging.critical("Specifying --verbose and --quiet and the same time is silly")
|
||||
sys.exit(1)
|
||||
|
||||
# Trick optparse into displaying the right usage when --help is used.
|
||||
sys.argv[0] += ' ' + command
|
||||
|
||||
|
||||
Reference in New Issue
Block a user