Commit 7c39d3e7 authored by Savorboard's avatar Savorboard

Add subscription exception logging

parent 9e92160e
......@@ -84,6 +84,10 @@ namespace DotNetCore.CAP
_isHealthy = false;
_logger.LogError(e, e.Message);
}
catch (Exception e)
{
_logger.LogError(e, e.Message);
}
}, _cts.Token, TaskCreationOptions.LongRunning, TaskScheduler.Default);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment