diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-09-07 14:49:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-07 14:49:50 +0200 |
| commit | 9c628cad2211317ff19876f659a085e0282da93e (patch) | |
| tree | a3dc074c13249213dfa46782568e65333fcefa53 | |
| parent | ec35b8b4255b32ff792d4f957fd160533bb0df3d (diff) | |
| parent | 71ab4a5754ff2c8e7477ebd6a2b948bb973da7a2 (diff) | |
Merge pull request #6526 from jellyfin/Bond-009-patch-2
| -rw-r--r-- | Emby.Server.Implementations/Library/MediaSourceManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/MediaSourceManager.cs b/Emby.Server.Implementations/Library/MediaSourceManager.cs index 4e0434b92..6f83973ba 100644 --- a/Emby.Server.Implementations/Library/MediaSourceManager.cs +++ b/Emby.Server.Implementations/Library/MediaSourceManager.cs @@ -521,7 +521,7 @@ namespace Emby.Server.Implementations.Library // TODO: @bond Fix var json = JsonSerializer.SerializeToUtf8Bytes(mediaSource, _jsonOptions); - _logger.LogInformation("Live stream opened: " + json); + _logger.LogInformation("Live stream opened: {@MediaSource}", mediaSource); var clone = JsonSerializer.Deserialize<MediaSourceInfo>(json, _jsonOptions); if (!request.UserId.Equals(Guid.Empty)) |
