diff --git a/source/Calamari/Commands/CommitToGitCommand.cs b/source/Calamari/Commands/CommitToGitCommand.cs index 30f7722fb..a2fbb2ded 100644 --- a/source/Calamari/Commands/CommitToGitCommand.cs +++ b/source/Calamari/Commands/CommitToGitCommand.cs @@ -253,6 +253,7 @@ string CopyDependencyToRepository(RunningDeployment deployment, RepositoryWrappe foreach (var (sourceFile, destRelativePath) in filesToTarget) { var destFile = Path.Combine(depDestBase, destRelativePath); + log.Verbose($"Copying '{Path.GetRelativePath(deployment.CurrentDirectory, sourceFile)}' -> '{Path.GetRelativePath(clonedRepository.WorkingDirectory, destFile)}'"); fileSystem.EnsureDirectoryExists(Path.GetDirectoryName(destFile)!); fileSystem.CopyFile(sourceFile, destFile); }