Config: Improve Logging in Serialize

This commit is contained in:
Jonathan Jenne 2022-08-17 16:19:08 +02:00
parent c3bfdb7ceb
commit fd298a76aa

View File

@ -321,6 +321,7 @@ Public Class ConfigManager(Of T)
Using oStream = New MemoryStream()
_Serializer.Serialize(oStream, Data)
_Logger.Debug("Object serialized.")
Return oStream.ToArray()
End Using
Catch ex As Exception