From d0575e14c7216675a6e3ac45b0d7de48ebc681f2 Mon Sep 17 00:00:00 2001 From: Alexandr Morogov <42555001+krankenbro@users.noreply.github.com> Date: Mon, 7 Aug 2023 16:28:58 +0200 Subject: [PATCH] VCI-648: Add a log message for modules from github private repos (#95) --- .../PlatformTools/Github/GithubPrivateModulesInstaller.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/VirtoCommerce.Build/PlatformTools/Github/GithubPrivateModulesInstaller.cs b/src/VirtoCommerce.Build/PlatformTools/Github/GithubPrivateModulesInstaller.cs index f4768b8..3d37a23 100644 --- a/src/VirtoCommerce.Build/PlatformTools/Github/GithubPrivateModulesInstaller.cs +++ b/src/VirtoCommerce.Build/PlatformTools/Github/GithubPrivateModulesInstaller.cs @@ -30,6 +30,7 @@ protected override async Task InnerInstall(ModuleSource source) foreach (var module in githubPrivateRepos.Modules) { var moduleDestination = Path.Join(_discoveryPath, module.Id); + Log.Information($"Installing {module.Id}"); Directory.CreateDirectory(moduleDestination); FileSystemTasks.EnsureCleanDirectory(moduleDestination); var zipName = $"{module.Id}.zip";