1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00

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

View File

@ -67,7 +67,7 @@ public DetectSampleResult IsSample(Series series, string path, bool isSpecial)
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;
}