Write-FancyLog.psd1

@{
    ModuleVersion = '1.2.0'  
    RootModule = 'Write-FancyLog.psm1' 
    Author = 'Malcolm Sheridan'
    Description = "The Write-FancyLog function is designed to format and display a log message with a decorative border. It takes a single string parameter, message, and prints the message to the console, surrounded by lines of dashes (-) that match the length of the message. This helps to visually separate log messages, making them easier to read and identify in the console output."
    FunctionsToExport = '*'
    GUID = 'c21f69dd-2edd-4420-b677-a13fcf39a946'
    PrivateData = @{
        PSData = @{
            Tags = @("PowerShell", "Handy")
        }
    }
}