Browse Source

properly categorize some existing streaming debug logs (#1595)

* properly categorize some existing streaming debug logs

* cleanup
pull/1597/head
Jason Dove 1 year ago committed by GitHub
parent
commit
08837bda80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      CHANGELOG.md
  2. 1
      ErsatzTV/Program.cs

2
CHANGELOG.md

@ -14,7 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -14,7 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Default value: `false`
- When enabled, embedded text subtitles will be periodically extracted, and considered for playback
- Add `sub_language` and `sub_language_tag` fields to search index
- Add `/iptv` request logging to streaming log category at debug level
- Add `/iptv` request logging to streaming log category at debug level
### Fixed
- Fix antiforgery error caused by reusing existing browser tabs across docker container restarts

1
ErsatzTV/Program.cs

@ -76,6 +76,7 @@ public class Program @@ -76,6 +76,7 @@ public class Program
// streaming
.MinimumLevel.Override("ErsatzTV.Application.Streaming", LoggingLevelSwitches.StreamingLevelSwitch)
.MinimumLevel.Override("ErsatzTV.FFmpeg", LoggingLevelSwitches.StreamingLevelSwitch)
.MinimumLevel.Override("ErsatzTV.Core.FFmpeg.FFmpegLibraryProcessService", LoggingLevelSwitches.StreamingLevelSwitch)
.MinimumLevel.Override("ErsatzTV.Controllers.IptvController", LoggingLevelSwitches.StreamingLevelSwitch)
.MinimumLevel.Override("Serilog.AspNetCore.RequestLoggingMiddleware", LoggingLevelSwitches.StreamingLevelSwitch)

Loading…
Cancel
Save