Browse Source

bump log level for nfo parse failures

pull/32/head
Jason Dove 6 years ago
parent
commit
9296f6a42c
  1. 6
      ErsatzTV.Core/Metadata/LocalMetadataProvider.cs

6
ErsatzTV.Core/Metadata/LocalMetadataProvider.cs

@ -218,7 +218,7 @@ namespace ErsatzTV.Core.Metadata
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogDebug(ex, "Failed to read TV show nfo metadata from {Path}", nfoFileName); _logger.LogInformation(ex, "Failed to read TV show nfo metadata from {Path}", nfoFileName);
return None; return None;
} }
} }
@ -246,7 +246,7 @@ namespace ErsatzTV.Core.Metadata
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogDebug(ex, "Failed to read TV episode nfo metadata from {Path}", nfoFileName); _logger.LogInformation(ex, "Failed to read TV episode nfo metadata from {Path}", nfoFileName);
return FallbackMetadataProvider.GetFallbackMetadata(episode); return FallbackMetadataProvider.GetFallbackMetadata(episode);
} }
} }
@ -273,7 +273,7 @@ namespace ErsatzTV.Core.Metadata
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogDebug(ex, "Failed to read Movie nfo metadata from {Path}", nfoFileName); _logger.LogInformation(ex, "Failed to read Movie nfo metadata from {Path}", nfoFileName);
return FallbackMetadataProvider.GetFallbackMetadata(mediaItem); return FallbackMetadataProvider.GetFallbackMetadata(mediaItem);
} }
} }

Loading…
Cancel
Save