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 33f50d1 commit 4250ba0Copy full SHA for 4250ba0
Signal-Windows.Lib/IncomingMessages.cs
@@ -94,6 +94,14 @@ public async Task OnMessage(SignalServiceMessagePipeMessage message)
94
SignalLibHandle.Instance.DispatchPipeEmptyMessage();
95
}
96
97
+ catch (Exception e)
98
+ {
99
+ Logger.LogError("OnMessage failed: {0}\n{1}", e.Message, e.StackTrace);
100
+ if (e.InnerException != null)
101
102
+ Logger.LogError("InnerException: {0}\n{1}", e.InnerException.Message, e.InnerException.StackTrace);
103
+ }
104
105
finally
106
{
107
SignalLibHandle.Instance.SemaphoreSlim.Release();
0 commit comments