diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-09-07 14:18:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-07 14:18:04 +0200 |
| commit | 71ab4a5754ff2c8e7477ebd6a2b948bb973da7a2 (patch) | |
| tree | a3dc074c13249213dfa46782568e65333fcefa53 /Emby.Server.Implementations/Library/MediaSourceManager.cs | |
| parent | 8dc0911374a784b945e7b58a0c9209d6a2a6d374 (diff) | |
Fix it for real(tm) this time
Diffstat (limited to 'Emby.Server.Implementations/Library/MediaSourceManager.cs')
| -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 523e6c93c..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}", json); + _logger.LogInformation("Live stream opened: {@MediaSource}", mediaSource); var clone = JsonSerializer.Deserialize<MediaSourceInfo>(json, _jsonOptions); if (!request.UserId.Equals(Guid.Empty)) |
