diff --git a/tools/Google.Cloud.Tools.ReleaseManager/GenerateApisCommand.cs b/tools/Google.Cloud.Tools.ReleaseManager/GenerateApisCommand.cs index b7815295d946..024556b58d7a 100644 --- a/tools/Google.Cloud.Tools.ReleaseManager/GenerateApisCommand.cs +++ b/tools/Google.Cloud.Tools.ReleaseManager/GenerateApisCommand.cs @@ -105,6 +105,7 @@ public int Execute(string[] args) foreach (var api in apis) { + Console.WriteLine($"{DateTime.UtcNow:yyyy-MM-dd'T'HH:mm:ss.fff}Z Generating {api.Id}"); if (api.Generator != GeneratorType.None) { Generate(api); @@ -119,7 +120,6 @@ public int Execute(string[] args) private void Generate(ApiMetadata api) { var layout = DirectoryLayout.ForApi(api.Id, generatorOutputDirectory, generatorInputDirectory); - Console.WriteLine($"{DateTime.UtcNow:yyyy-MM-dd'T'HH:mm:ss.fff}Z Generating {api.Id}"); MaybeRunScript("pregeneration.sh"); switch (api.Generator) {