Writes a formatted verbose message.
Write-AtlassianVerboseMessage [-Message] <String> [[-Cmdlet] <PSCmdlet>] [<CommonParameters>]
Writes verbose output using the configured message style settings (Breadcrumbs,
Indent, FunctionName, and TimeStamp).
Use this helper instead of shadowing PowerShell’s built-in Write-Verbose command.
Write-AtlassianVerboseMessage -Message 'Shared runtime diagnostic message.' -Verbose
Writes a verbose message using the configured message style.
Set-AtlassianConfiguration -Name Message -Value ([AtlassianPS.MessageStyle]::new(2, $false, $true, $false))
Write-AtlassianVerboseMessage -Message 'Shared runtime diagnostic message.' -Verbose
Writes a breadcrumb line and an indented verbose message based on the configured message style.
Message to write to the verbose stream.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Optional cmdlet context used for function-name formatting.
Defaults to the caller’s $PSCmdlet when called from an advanced function.
Type: PSCmdlet
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: Caller $PSCmdlet
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
System.String
None