Skip to content

Commit de46208

Browse files
committed
refactor: Change some Information logging to Verbose so user does not see it by default
1 parent f14f5ee commit de46208

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_InitializeRepository.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you have made changes to any files you may want to commit them before continu
1414

1515
[string] $organizationName = Read-Host -Prompt "Enter your name, or the the name of your organization (e.g. 'My Company'). This will be used in the module manifest and repository license"
1616

17-
Write-Information "Copying template repository module files to a temporary location to run it from."
17+
Write-Verbose "Copying template repository module files to a temporary location to run it from."
1818
[string] $tempModuleDirectoryPath = CopyTemplateModuleFilesToTemporaryDirectory -templateModuleDirectoryPath $TemplateModuleDirectoryPath
1919

2020
Write-Information "Removing all files from this repository so they can be replaced with template repository files."
@@ -25,10 +25,10 @@ If you have made changes to any files you may want to commit them before continu
2525
New-PowerShellScriptModuleRepository -RepositoryDirectoryPath $RepositoryDirectoryPath -ModuleName $moduleName -OrganizationName $organizationName
2626
Remove-Module -Name $TemplateModuleName -Force
2727

28-
Write-Information "Removing the temporary template module files since we are done using it to create the template repository files."
28+
Write-Verbose "Removing the temporary template module files since we are done using it to create the template repository files."
2929
RemoveTemporaryModuleDirectory -tempModuleDirectoryPath $tempModuleDirectoryPath
3030

31-
Write-Information "Deleting this script as it is no longer needed."
31+
Write-Verbose "Deleting this script as it is no longer needed."
3232
DeleteThisScript
3333

3434
Write-Host -ForegroundColor Green "Repo initialization complete. You can now commit the changes to your repository."

0 commit comments

Comments
 (0)