diff --git a/otaclient/app/main.py b/otaclient/app/main.py index 561e72296..63855d9c4 100644 --- a/otaclient/app/main.py +++ b/otaclient/app/main.py @@ -23,6 +23,7 @@ from .common import read_str_from_file, write_str_to_file_sync from .configs import config as cfg +from .configs import ecu_info from .log_setting import configure_logging from .ota_client_service import launch_otaclient_grpc_server from .proto import ota_metafiles, v2, v2_grpc, wrapper # noqa: F401 @@ -54,6 +55,7 @@ def _check_other_otaclient(): def main(): logger.info("started") logger.info(f"otaclient version: {__version__}") + logger.info(f"ecu_info.yaml: \n{ecu_info}") # start the otaclient grpc server _check_other_otaclient()