From e839dadc1210357400df5b659fc103fc2907dcff Mon Sep 17 00:00:00 2001 From: Engincan VESKE <43685404+EngincanV@users.noreply.github.com> Date: Wed, 24 May 2023 10:59:19 +0300 Subject: [PATCH] CLI: Improve download module log --- .../Volo/Abp/Cli/Commands/Services/SourceCodeDownloadService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SourceCodeDownloadService.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SourceCodeDownloadService.cs index bee03b9c1f..502b5328b0 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SourceCodeDownloadService.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SourceCodeDownloadService.cs @@ -33,7 +33,7 @@ public class SourceCodeDownloadService : ITransientDependency public async Task DownloadModuleAsync(string moduleName, string outputFolder, string version, string gitHubAbpLocalRepositoryPath, string gitHubVoloLocalRepositoryPath, AbpCommandLineOptions options) { - Logger.LogInformation($"Downloading source code of {moduleName} (v{version ?? "Latest"})"); + Logger.LogInformation($"Downloading source code of {moduleName} ({(version != null ? "v" + version : "Latest")})"); Logger.LogInformation("Output folder: " + outputFolder); var result = await ModuleProjectBuilder.BuildAsync(