Skip to content

tim-krehan/powershell-logging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

96 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Add easy logging to PowerShell

Publish to Gallery

Installation

Just install the modul from the Powershell Gallery

Install-Module -Name powershell-logging -Repository PSGallery -Scope CurrentUser

Usage

Open-Log

# Open (or switch to) a new log file with console and file target.
$LogConnection = Open-Log -Name "PowershellLogging" -LogPath ".\LOG"
# Open an existing logfile
$LogConnection = Get-ChildItem ".\Log\PowershellLogging.log" | Open-Log
# Open a log, that writes exclusivly to the console
Open-Log -Name "PowershellLogging"
# Open a log, that uses the Powershell Streams to write the corresponding messages to
Open-Log -Name "PowershellLogging" -ConsoleType "Stream"
 Name            Active                Targets LogLines
 ----            ------                ------- --------
 PowerShell.log    True        {Console, File} -

Write-Log

# Write a new informative line to the currently opened log.
Write-Log INFO information
# Write a new error line to the given log connection.
Write-Log ERROR error -LogConnection $LogConnection
2021-01-18 14:38:05.9539 - [email protected] -    INFO - information
2021-01-18 14:39:05.0000 - [email protected] -   ERROR - error

Get-Log

# Gets the currently active log connection
Get-Log
 Name                                   LogLevels WriteThrough LogLines
 ----                                   --------- ------------ --------
 PowershellLogging {INFO, WARNING, SUCCESS, ERROR}         True -

Close-Log

# closes the currently opened log
Close-Log
# closes the given log connection
Close-Log -LogConnection $LogConnection

Get-LogContent

# selects the first two ERRORS within the current log file
Get-LogContent -First 2 -IncludeError
# selects the last 10 Entries within the given log connection
Get-LogContent -Last 10 -LogConnection $LogConnection
# selects the last 10 Entries that match with the given string of the given log file
Get-LogContent -Last 10 -LogConnection $LogConnection -Filter "iis"
DateTime            User Domain       Severity Message
--------            ---- ------       -------- -------
11.06.2021 08:37:22  tim krehan.de       ERROR error
11.06.2021 09:40:27  tim krehan.de       ERROR error2
DateTime            User Domain    Severity Message
--------            ---- ------    -------- -------
11.06.2021 08:37:17  tim krehan.de     INFO info
11.06.2021 08:37:18  tim krehan.de     INFO info
11.06.2021 08:37:19  tim krehan.de     INFO info
11.06.2021 08:37:20  tim krehan.de    ERROR error
11.06.2021 08:37:21  tim krehan.de     INFO info
11.06.2021 08:37:22  tim krehan.de     INFO info
11.06.2021 08:37:23  tim krehan.de     INFO info
11.06.2021 08:37:24  tim krehan.de     INFO info
11.06.2021 08:37:25  tim krehan.de    ERROR error
11.06.2021 08:37:26  tim krehan.de     INFO info
DateTime            User Domain    Severity Message
--------            ---- ------    -------- -------
11.06.2021 08:37:17  tim krehan.de     INFO iis started up
11.06.2021 08:37:18  tim krehan.de    ERROR iis failed to start!
11.06.2021 08:37:19  tim krehan.de     INFO web server (iis) has exited

Add-LogTarget

# Add Another Target to the currently opened log
Add-LogTarget -FullName ".\LOG\PowershellLogging2.log"
 Name       Active               Targets LogLines
 ----       ------               ------- --------
 PowerShell   True {Console, File, File} -

Remove-LogTarget

# Removes the second LogTarget
Remove-LogTarget -GUID ((Get-Log).Targets[1].GUID)
# Removes all LogTargets
Get-Log |Select-Object -ExpandProperty Targets | Remove-LogTarget

Clear-LogTarget

# Clears the second LogTarget
Clear-LogTarget -GUID ((Get-Log).Targets[1].GUID)
# Clears all LogTargets
Get-Log |Select-Object -ExpandProperty Targets | Clear-LogTarget
# a target of type Console will delete all scrolling history, a file type will remove all file content.

Move-LogTarget

# Moves the target to the specified destination
Move-LogTarget -Path "C:\Log" -GUID "F421DC01-0275-4EB8-BE78-7D9E4966E999"
# Moves the given log file to the specified destination
(Get-Log).Targets |where-object Type -like File |Foreach-Object -Process {
    Move-LogTarget -Target $_ -Path ".\LOG2"
}

Rename-LogTarget

# Renames the target
Rename-LogTarget -NewName "powershell" -GUID "F421DC01-0275-4EB8-BE78-7D9E4966E999"

Switch-Log

# Sets the given log as new active log conneciton
Switch-Log -LogConnection $LogConnection
     Name                       LogLevels WriteThrough LogLines
     ----                       --------- ------------ --------
 log2.log {INFO, WARNING, SUCCESS, ERROR}         True 12x INFO; 3x ERROR