Functions/Show-VerboseMessage.ps1

<#
.SYNOPSIS
    Shows a verbose message on the PowerShell host.

.DESCRIPTION
    Uses the internal .NET method WriteVerboseLine() of the host UI class to
    show the verbose message on the console.

.PARAMETER Message
    The verbose message.

.EXAMPLE
    C:\> Show-VerboseMessage -Message 'My Verbose Message'
    Show the verbose message.

.NOTES
    Author : Claudio Spizzi
    License : MIT License

.LINK
    https://github.com/claudiospizzi/ScriptLogger
#>


function Show-VerboseMessage
{
    param
    (
        [Parameter(Mandatory=$true)]
        [String] $Message
    )

    $Host.UI.WriteVerboseLine($Message)
}