You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding some examples to the ReadMe showing how to use it (not just install it) and what that looks like would be helpful. I (and I imagine others) don't even bother trying out modules/packages when there's no docs showing how to use it. Thanks!
The text was updated successfully, but these errors were encountered:
Save the following code to a file (e.g. test.ps1):
Import-Module PowerShellLogging
$LogFile=Enable-LogFile-Path $env:temp\test.log
# Note - it is necessary to save the result of Enable-LogFile to a variable in order to keep the object alive. As soon as the $LogFile variable is reassigned or falls out of scope, the LogFile object becomes eligible for garbage collection. $VerbosePreference='Continue'$DebugPreference='Continue'Write-Host"Write-Host test.""Out-Default test."Write-Verbose"Write-Verbose test."Write-Debug"Write-Debug test."Write-Warning"Write-Warning test."Write-Error"Write-Error test."Write-Host""# To display a blank line in the file and on screen. Write-Host"Multi`r`nLine`r`n`r`nOutput"# To display behavior when strings have embedded newlines. # Disable logging before the script exits (good practice, but the LogFile will be garbage collected so long as this variable was not in the Global Scope, as a backup in case the script crashes or you somehow forget to call Disable-LogFile). $LogFile|Disable-LogFile
Adding some examples to the ReadMe showing how to use it (not just install it) and what that looks like would be helpful. I (and I imagine others) don't even bother trying out modules/packages when there's no docs showing how to use it. Thanks!
The text was updated successfully, but these errors were encountered: