forked from AutomatedLab/AutomatedLab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PSLog.psd1
55 lines (42 loc) · 1.58 KB
/
PSLog.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@{
RootModule = 'PSLog.psm1'
ModuleVersion = '1.0.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 = '2022'
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '3.5'
RequiredModules = @( )
FunctionsToExport = @(
'Get-CallerPreference',
'Write-LogError',
'Write-LogFunctionEntry',
'Write-LogFunctionExit',
'Write-LogFunctionExitWithError',
'Write-ProgressIndicator',
'Write-ProgressIndicatorEnd',
'Write-ScreenInfo'
)
PrivateData = @{
AutoStart = $true
DefaultFolder = ''
DefaultName = 'PSLog'
Level = 'All'
Silent = $false
TruncateTypes = @(
'System.Management.Automation.ScriptBlock'
)
TruncateLength = 50
PSData = @{
Prerelease = ''
Tags = @('Logging')
LicenseUri = 'https://github.com/AutomatedLab/AutomatedLab/blob/main/LICENSE'
ProjectUri = 'https://github.com/AutomatedLab/AutomatedLab'
IconUri = 'https://github.com/AutomatedLab/AutomatedLab/blob/master/Assets/Automated-Lab_icon256.png'
ReleaseNotes = ''
}
}
}