Logging: Add ClearOldLogfiles to remove logfiles older than x, Add ModuleName to create subloggers with separate logfiles

This commit is contained in:
Jonathan Jenne
2021-05-17 14:34:41 +02:00
parent f50fbe7099
commit 9e7c840579
4 changed files with 188 additions and 53 deletions

View File

@@ -0,0 +1,10 @@
Imports DigitalData.Modules.Logging.LogConfig
Public Class LogOptions
Property LogPath As PathType
Property CustomLogPath As String = Nothing
Property Suffix As String = Nothing
Property CompanyName As String = Nothing
Property ProductName As String = Nothing
Property FileKeepInterval As Integer = 0
End Class