We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6237dd4 commit 9f67d3dCopy full SHA for 9f67d3d
1 file changed
src/Renci.SshNet/SubsystemSession.cs
@@ -2,6 +2,7 @@
2
using System.Globalization;
3
using System.Text;
4
using System.Threading;
5
+using Renci.SshNet.Abstractions;
6
using Renci.SshNet.Channels;
7
using Renci.SshNet.Common;
8
@@ -170,6 +171,8 @@ protected void RaiseError(Exception error)
170
171
{
172
_exception = error;
173
174
+ DiagnosticAbstraction.Log("Raised exception: " + error);
175
+
176
var errorOccuredWaitHandle = _errorOccuredWaitHandle;
177
if (errorOccuredWaitHandle != null)
178
errorOccuredWaitHandle.Set();
0 commit comments