File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,7 @@ $colorCodeCyan = '36'
30
30
Writes debug information about the function call and its parameters if extended debug logging is enabled.
31
31
. DESCRIPTION
32
32
Writes debug information about the function call and its parameters to the console if extended debug logging is enabled.
33
- Should be called like: Write-Debug-FunctionCallInfo -FunctionName "<FunctionName>" -Parameters $MyInvocation.BoundParameters
34
- Or in case of no parameters: Write-Debug-FunctionCallInfo -FunctionName "<FunctionName>".
35
- . PARAMETER FunctionName
36
- Name of the function being called.
37
- . PARAMETER Parameters
38
- Paraeters passed to the function. Should always be passed using $MyInvocation.BoundParameters.
33
+ Automatically retrieves the caller's name and arguments from the call stack.
39
34
#>
40
35
function OutputDebugFunctionCall {
41
36
if ($debugLoggingEnabled -or $runningLocal ) {
You can’t perform that action at this time.
0 commit comments