Skip to content

Commit aeb1191

Browse files
committed
Add the expected file path to the error message when the output video file cannot be found.
1 parent f6830bb commit aeb1191

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

VidCoder/Services/ProcessingService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2317,7 +2317,7 @@ private void OnEncodeCompleted(EncodeJobViewModel finishedJobViewModel, VCEncode
23172317
else if (!directOutputFileInfo.Exists)
23182318
{
23192319
status = EncodeResultStatus.Failed;
2320-
encodeLogger.LogError("Encode failed. HandBrake reported no error but the expected output file was not found.");
2320+
encodeLogger.LogError($"Encode failed. HandBrake reported no error but the expected output file at {finishedJobViewModel.Job.InProgressOutputPath} was not found.");
23212321
}
23222322
else
23232323
{

0 commit comments

Comments
 (0)