Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/13bd9535cc6496515dff3c38f94aef34d21f1625 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Log exception message with audio channel warn

pull/2/head
Qstick 5 years ago
parent cb97f90b9e
commit 13bd9535cc

@ -494,10 +494,10 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
return positions;
}
}
catch (Exception)
catch (Exception ex)
{
Logger.Warn()
.Message("Unable to format audio channels using 'AudioChannelPositions', with a value of: '{0}' and '{1}'", audioChannelPositions, mediaInfo.AudioChannelPositionsText)
.Message("Unable to format audio channels using 'AudioChannelPositions', with a value of: '{0}' and '{1}'. Error {2}", audioChannelPositions, mediaInfo.AudioChannelPositionsText, ex.Message)
.WriteSentryWarn("UnknownAudioChannelFormat", audioChannelPositions, mediaInfo.AudioChannelPositionsText)
.Write();
}

Loading…
Cancel
Save