Skip to content

Commit

Permalink
changed some verbose messages to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed May 24, 2018
1 parent 6c60cfb commit dcaaaac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Posh-ACME/Private/Import-PfxCertInternal.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function Import-PfxCertInternal {

if (Get-Command 'Import-PfxCertificate' -ErrorAction SilentlyContinue) {
# Win 8/2012 and above (Windows PowerShell only)
Write-Verbose "Importing PFX via native Import-PfxCertificate"
Write-Debug "Importing PFX via native Import-PfxCertificate"

Import-PfxCertificate $PfxFile Cert:\$StoreName\$StoreLoc -Exportable -Password $PfxPass | Out-Null

Expand All @@ -30,7 +30,7 @@ function Import-PfxCertInternal {

} else {
# Win 7/2008R2 and below and PowerShell Core on Windows
Write-Verbose "Importing PFX via downlevel pfx import code"
Write-Debug "Importing PFX via downlevel pfx import code"

try {

Expand Down

0 comments on commit dcaaaac

Please sign in to comment.