diff options
| author | Bond_009 <bond.009@outlook.com> | 2022-06-14 16:43:48 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2022-06-14 16:43:48 +0200 |
| commit | 5b4e14940ea20c0afeea6c2031e34aa870786fe9 (patch) | |
| tree | 2e38f403d344aa2cdbcc2c38759540a8e1a12ea8 | |
| parent | 181b2760b8ce590c25cdb8fd57f44ac1aaa49984 (diff) | |
Fix format string
| -rw-r--r-- | Emby.Dlna/PlayTo/DlnaHttpClient.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Dlna/PlayTo/DlnaHttpClient.cs b/Emby.Dlna/PlayTo/DlnaHttpClient.cs index 623f4526c..62156d183 100644 --- a/Emby.Dlna/PlayTo/DlnaHttpClient.cs +++ b/Emby.Dlna/PlayTo/DlnaHttpClient.cs @@ -59,7 +59,7 @@ namespace Emby.Dlna.PlayTo _logger.LogError(ex, "Failed to parse response"); if (_logger.IsEnabled(LogLevel.Debug)) { - _logger.LogDebug("Malformed response:\n", await response.Content.ReadAsStringAsync(cancellationToken).ConfigureAwait(false)); + _logger.LogDebug("Malformed response: {Content}\n", await response.Content.ReadAsStringAsync(cancellationToken).ConfigureAwait(false)); } return null; |
