Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Posh365
0.8.9.5
Public/Logging/Write-Log.ps1
Function
Write-Log
{
param
(
[
Parameter
(
)
]
[string]
$Log
,
[
Parameter
(
)
]
[string]
$AddToLog
)
Add-Content
-Path
$Log
-Value
$AddToLog
}