diff --git a/PS-Logger/PS-Logger.psd1 b/PS-Logger/PS-Logger.psd1 index 887be76..7ca8e22 100644 --- a/PS-Logger/PS-Logger.psd1 +++ b/PS-Logger/PS-Logger.psd1 @@ -1,6 +1,6 @@ @{ # Script module or binary module file associated with this manifest - RootModule = 'Utilities-Logging.psm1' + RootModule = 'PS-Logger.psm1' # Version number of this module. ModuleVersion = '1.0.0' @@ -9,13 +9,13 @@ GUID = '{00000000-0000-0000-0000-000000000000}' # Author of this module - Author = 'Your Name' + Author = 'Raymond LaRose' # Company or vendor of this module - CompanyName = 'Your Company' + CompanyName = 'City of Norwich' # Copyright statement for this module - Copyright = '(c) 2025 Your Name. All rights reserved.' + Copyright = '(c) 2025 City of Norwich. All rights reserved.' # Description of the functionality provided by this module Description = 'A PowerShell module for managing and writing log messages with different log levels.' @@ -30,7 +30,7 @@ RequiredAssemblies = @() # Functions to export from this module - FunctionsToExport = @('Set-LogLevel', 'Write-LogMessage') + FunctionsToExport = @('Set-LogLevel', 'Write-LogMessage', 'Start-Logging') # Cmdlets to export from this module CmdletsToExport = @()