PSLog.psd1

@{
    RootModule             = 'PSLog.psm1'
    
    ModuleVersion = '5.15.0'
    
    CompatiblePSEditions   = 'Core', 'Desktop'
    
    GUID                   = 'cd303a6c-f405-4dcb-b1ce-fbc2c52264e9'
    
    Author                 = 'Raimund Andree, Per Pedersen'

    Description            = 'Redirects stanard Write-* cmdlets to a log and offers some basic tracing functions'
    
    CompanyName            = 'AutomatedLab Team'
    
    Copyright              = '2019'
    
    PowerShellVersion      = '5.1'
    
    DotNetFrameworkVersion = '3.5'
    
    ModuleList             = @('PSLog')

    RequiredModules        = @('PSFramework')
    
    PrivateData            = @{
        AutoStart      = $true
        DefaultFolder  = $null
        DefaultName    = 'PSLog'
        Level          = 'All'
        Silent         = $false
        TruncateTypes  = @(
            'System.Management.Automation.ScriptBlock'
        )
        TruncateLength = 50
    }
}