ui: put version in initial INFO logging message

This commit is contained in:
Peter F. Patel-Schneider 2023-04-05 11:54:10 -04:00
parent 4a9b46679c
commit bacc2c6c7a
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ def _parse_arguments():
if not args.action: if not args.action:
if _log.isEnabledFor(logging.INFO): if _log.isEnabledFor(logging.INFO):
logging.info('language %s (%s), translations path %s', _i18n.language, _i18n.encoding, _i18n.path) logging.info('version %s, language %s (%s)', __version__, _i18n.language, _i18n.encoding)
return args return args