always return logs for LogConfig.Logs

This commit is contained in:
Jonathan Jenne 2019-10-18 14:22:07 +02:00
parent 69fe0cd535
commit f3d6a8cae3

View File

@ -168,10 +168,6 @@ Public Class LogConfig
''' <returns>A list of log messages</returns> ''' <returns>A list of log messages</returns>
Public ReadOnly Property Logs As List(Of String) Public ReadOnly Property Logs As List(Of String)
Get Get
If Debug = False Then
Return New List(Of String)
End If
Dim oTarget = config.FindTargetByName(Of MemoryTarget)(TARGET_MEMORY) Dim oTarget = config.FindTargetByName(Of MemoryTarget)(TARGET_MEMORY)
Return oTarget?.Logs.ToList() Return oTarget?.Logs.ToList()
End Get End Get