From e86403e6b3c4d878094b9d8915387bed44f87874 Mon Sep 17 00:00:00 2001 From: Juan Ignacio Molteni Date: Mon, 23 Sep 2024 10:52:35 -0300 Subject: [PATCH] Update PXZClient.cs Signed-off-by: Juan Ignacio Molteni --- DCL_PiXYZ/PXZClient.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/DCL_PiXYZ/PXZClient.cs b/DCL_PiXYZ/PXZClient.cs index b628428..d1676ad 100644 --- a/DCL_PiXYZ/PXZClient.cs +++ b/DCL_PiXYZ/PXZClient.cs @@ -99,9 +99,6 @@ private async Task DoConversion(PXZConversionParams pxzParams, SceneConversionIn { var stopwatch = new Stopwatch(); - try - { - //Check if they were converted stopwatch.Restart(); FileWriter.WriteToConsole($"BEGIN CONVERTING {scene} WITH {pxzParams.DecimationValue}"); await ConvertScene(pxzParams, pathHandler, sceneConversionInfo); @@ -112,10 +109,6 @@ private async Task DoConversion(PXZConversionParams pxzParams, SceneConversionIn FileWriter.WriteToFile($"{scene}\t{pxzParams.DecimationValue}\t{elapsedTime}" , pathHandler.SuccessFile); } - catch (Exception e) - { - FileWriter.WriteToFile($"{scene}\tCONVERSION ERROR {pxzParams.DecimationValue}: {e.Message}", pathHandler.FailFile); - } } private bool HasSceneBeenConverted(List convertedScenes, string scene)