Merge pull request #435 from Bond-009/ffmpeglogs

Reduce log spam from ffmpeg info
This commit is contained in:
Anthony Lavado 2019-01-06 16:59:37 -05:00 committed by GitHub
commit 0a715f9196

View file

@ -51,7 +51,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
return false;
}
_logger.LogInformation("ffmpeg info: {0}", output);
_logger.LogDebug("ffmpeg output: {Output}", output);
if (output.IndexOf("Libav developers", StringComparison.OrdinalIgnoreCase) != -1)
{
@ -160,10 +160,12 @@ namespace MediaBrowser.MediaEncoding.Encoder
Arguments = arguments,
IsHidden = true,
ErrorDialog = false,
RedirectStandardOutput = true
RedirectStandardOutput = true,
// ffmpeg uses stderr to log info, don't show this
RedirectStandardError = true
});
_logger.LogInformation("Running {Path} {Arguments}", path, arguments);
_logger.LogDebug("Running {Path} {Arguments}", path, arguments);
using (process)
{
@ -175,7 +177,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
}
catch
{
_logger.LogInformation("Killing process {path} {arguments}", path, arguments);
_logger.LogWarning("Killing process {Path} {Arguments}", path, arguments);
// Hate having to do this
try