Przeglądaj źródła

Override ToString() for LogMessage

release/3.x.x
Christian 6 lat temu
rodzic
commit
6e828d091f
1 zmienionych plików z 11 dodań i 0 usunięć
  1. +11
    -0
      Frameworks/MQTTnet.NetStandard/Diagnostics/MqttNetLogMessage.cs

+ 11
- 0
Frameworks/MQTTnet.NetStandard/Diagnostics/MqttNetLogMessage.cs Wyświetl plik

@@ -28,5 +28,16 @@ namespace MQTTnet.Diagnostics
public string Message { get; }

public Exception Exception { get; }

public override string ToString()
{
var result = $"[{Timestamp:O}] [{LogId}] [{ThreadId}] [{Source}] [{Level}]: {Message}";
if (Exception != null)
{
result += Environment.NewLine + Exception;
}

return result;
}
}
}

Ładowanie…
Anuluj
Zapisz