You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -77,7 +82,7 @@ public void Start(CancellationToken token)
77
82
}
78
83
catch(COMExceptionexception)
79
84
{
80
-
Logger.Error(exception,"Exception thrown in thread {0}.",Thread.CurrentThread.ManagedThreadId);
85
+
Logger.Error(exception,"Exception thrown in thread {0}, ParseTaskID {1}.",Thread.CurrentThread.ManagedThreadId,_taskId);
81
86
varfailedHandler=ParseFailure;
82
87
if(failedHandler!=null)
83
88
failedHandler.Invoke(this,newParseFailureArgs
@@ -88,7 +93,7 @@ public void Start(CancellationToken token)
88
93
catch(SyntaxErrorExceptionexception)
89
94
{
90
95
//System.Diagnostics.Debug.Assert(false, "A RecognitionException should be notified of, not thrown as a SyntaxErrorException. This lets the parser recover from parse errors.");
91
-
Logger.Error(exception,"Exception thrown in thread {0}.",Thread.CurrentThread.ManagedThreadId);
96
+
Logger.Error(exception,"Exception thrown in thread {0}, ParseTaskID {1}.",Thread.CurrentThread.ManagedThreadId,_taskId);
0 commit comments