Explorar el Código

Fix format string

Bond_009 hace 3 años
padre
commit
5b4e14940e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Emby.Dlna/PlayTo/DlnaHttpClient.cs

+ 1 - 1
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;