diff --git a/generators/python/src/fern_python/snippet/snippet_template_factory.py b/generators/python/src/fern_python/snippet/snippet_template_factory.py index 7231bc86603..09764faa30c 100644 --- a/generators/python/src/fern_python/snippet/snippet_template_factory.py +++ b/generators/python/src/fern_python/snippet/snippet_template_factory.py @@ -703,11 +703,12 @@ def generate_templates(self) -> List[SnippetRegistryEntry]: ) ) + endpoint_id = self._endpoint_to_identifier(endpoint) self._generator_exec_wrapper.send_update( GeneratorUpdate.factory.log( LogUpdate( level=LogLevel.DEBUG, - message=f"Snippet template created for endpoint {json.dumps(self._endpoint_to_identifier(endpoint))}.", + message=f"Snippet template created for endpoint: {endpoint_id.method} {endpoint_id.path}.", ) ) )