Add support for --quiet in genPOI.py
This commit is contained in:
@@ -48,12 +48,16 @@ def main():
|
|||||||
|
|
||||||
parser = OptionParser(usage=helptext)
|
parser = OptionParser(usage=helptext)
|
||||||
parser.add_option("--config", dest="config", action="store", help="Specify the config file to use.")
|
parser.add_option("--config", dest="config", action="store", help="Specify the config file to use.")
|
||||||
|
parser.add_option("--quiet", dest="quiet", action="count", help="Reduce logging output")
|
||||||
|
|
||||||
options, args = parser.parse_args()
|
options, args = parser.parse_args()
|
||||||
if not options.config:
|
if not options.config:
|
||||||
parser.print_help()
|
parser.print_help()
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if options.quiet > 0:
|
||||||
|
logger.configure(logging.WARN, False)
|
||||||
|
|
||||||
# Parse the config file
|
# Parse the config file
|
||||||
mw_parser = configParser.MultiWorldParser()
|
mw_parser = configParser.MultiWorldParser()
|
||||||
mw_parser.parse(options.config)
|
mw_parser.parse(options.config)
|
||||||
|
|||||||
Reference in New Issue
Block a user