Change some messages types into error.

This commit is contained in:
Frédéric Tronel
2025-08-30 09:03:42 +02:00
parent 4b3c6a33c0
commit fcf4d914c9

View File

@@ -244,12 +244,12 @@ def main():
logger.debug("Final arguments: %s" % args) logger.debug("Final arguments: %s" % args)
if args.city == None: if args.city == None:
logger.info('City must be provided.') logger.error('City must be provided.')
parser.print_help() parser.print_help()
exit(-1) exit(-1)
if args.login == None: if args.login == None:
logger.info('Login must be provided.') logger.error('Login must be provided.')
parser.print_help() parser.print_help()
exit(-1) exit(-1)