优化了Exception报错

This commit is contained in:
2023-10-20 15:29:32 +08:00
parent caeb697421
commit a3fff03ff6
2 changed files with 18 additions and 10 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ public partial class Synapse
}
catch (Exception e)
{
Logger.LogError("Event Processor Error: {Err}", e.Message);
Logger.LogError("Event Processor Error: {Err}", e.InnerException);
EventServerChannel.BasicNack(ea.DeliveryTag, false, false);
}
};