Browse Source

show path replacement logs by default (#445)

pull/447/head
Jason Dove 4 years ago committed by GitHub
parent
commit
bc9d17ca25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 2
      ErsatzTV.Core/Emby/EmbyPathReplacementService.cs
  3. 2
      ErsatzTV.Core/Jellyfin/JellyfinPathReplacementService.cs

3
CHANGELOG.md

@ -7,6 +7,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -7,6 +7,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
- Fix generated streams with mpeg2video
### Changed
- Change some debug log messages to info so they show by default again
## [0.1.5-alpha] - 2021-10-18
### Fixed
- Fix double scheduling; this could happen if the app was shutdown during a playout build

2
ErsatzTV.Core/Emby/EmbyPathReplacementService.cs

@ -68,7 +68,7 @@ namespace ErsatzTV.Core.Emby @@ -68,7 +68,7 @@ namespace ErsatzTV.Core.Emby
if (log)
{
_logger.LogDebug(
_logger.LogInformation(
"Replacing emby path {EmbyPath} with {LocalPath} resulting in {FinalPath}",
replacement.EmbyPath,
replacement.LocalPath,

2
ErsatzTV.Core/Jellyfin/JellyfinPathReplacementService.cs

@ -69,7 +69,7 @@ namespace ErsatzTV.Core.Jellyfin @@ -69,7 +69,7 @@ namespace ErsatzTV.Core.Jellyfin
if (log)
{
_logger.LogDebug(
_logger.LogInformation(
"Replacing jellyfin path {JellyfinPath} with {LocalPath} resulting in {FinalPath}",
replacement.JellyfinPath,
replacement.LocalPath,

Loading…
Cancel
Save