Logging: Improve json logging

This commit is contained in:
Jonathan Jenne
2023-09-01 13:56:37 +02:00
parent 2b80e8fa97
commit e63d1ea557
3 changed files with 17 additions and 7 deletions

9
Logging/LogEntry.vb Normal file
View File

@@ -0,0 +1,9 @@
Public Class LogEntry
Public Property Level As String
Public Property Message As String
Public Property Product As String
Public Property Time As Date
Public Property Suffix As String
Public Property [Module] As String
Public Property Exception As String
End Class