Browse Source

Override ToString() for LogMessage

release/3.x.x
Christian 6 years ago
parent
commit
6e828d091f
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      Frameworks/MQTTnet.NetStandard/Diagnostics/MqttNetLogMessage.cs

+ 11
- 0
Frameworks/MQTTnet.NetStandard/Diagnostics/MqttNetLogMessage.cs View File

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


public Exception Exception { 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;
}
} }
} }

Loading…
Cancel
Save