diff --git a/voicevox_engine/synthesis_engine/make_synthesis_engines.py b/voicevox_engine/synthesis_engine/make_synthesis_engines.py index 3027516a1..848a601af 100644 --- a/voicevox_engine/synthesis_engine/make_synthesis_engines.py +++ b/voicevox_engine/synthesis_engine/make_synthesis_engines.py @@ -81,6 +81,7 @@ def load_core_library(core_dir: Path, suppress_error: bool = False): core = CoreWrapper(use_gpu, core_dir, cpu_num_threads, load_all_models) metas = json.loads(core.metas()) core_version = metas[0]["version"] + print(f"Info: Loading core {core_version}.") if core_version in synthesis_engines: print( "Warning: Core loading is skipped because of version duplication.", @@ -115,6 +116,7 @@ def load_core_library(core_dir: Path, suppress_error: bool = False): from ..dev.synthesis_engine import MockSynthesisEngine if "0.0.0" not in synthesis_engines: + print("Info: Loading mock.") synthesis_engines["0.0.0"] = MockSynthesisEngine( speakers=mock_metas(), supported_devices=mock_supported_devices() )