Fixed: Logging length of sample file

Closes #6180
This commit is contained in:
bakerboy448 2023-11-16 18:32:51 -06:00 committed by GitHub
parent b76bf37371
commit c7d12066bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
return DetectSampleResult.Sample;
}
_logger.Debug("Runtime is over 90 seconds");
_logger.Debug("[{0}] does not appear to be a sample. Runtime {1} seconds is more than minimum of {2} seconds", path, runTime, minimumRuntime);
return DetectSampleResult.NotSample;
}