diff --git a/src/TensorFlowNET.Core/Python.cs b/src/TensorFlowNET.Core/Python.cs index f6fb08c8..9d44300b 100644 --- a/src/TensorFlowNET.Core/Python.cs +++ b/src/TensorFlowNET.Core/Python.cs @@ -46,9 +46,6 @@ namespace Tensorflow catch (Exception ex) { Console.WriteLine(ex.ToString()); -#if DEBUG - Debugger.Break(); -#endif throw; } finally @@ -68,9 +65,6 @@ namespace Tensorflow catch (Exception ex) { Console.WriteLine(ex.ToString()); -#if DEBUG - Debugger.Break(); -#endif throw; } finally @@ -89,10 +83,7 @@ namespace Tensorflow } catch (Exception ex) { - Console.WriteLine(ex.ToString()); -#if DEBUG - Debugger.Break(); -#endif + Console.WriteLine(ex.ToString()); throw; return default(TOut); }