浏览代码

modify error log content.

master
Savorboard 7 年前
父节点
当前提交
bf2a874103
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/DotNetCore.CAP.Kafka/PublishQueueExecutor.cs

+ 1
- 1
src/DotNetCore.CAP.Kafka/PublishQueueExecutor.cs 查看文件

@@ -49,7 +49,7 @@ namespace DotNetCore.CAP.Kafka
catch (Exception ex)
{
_logger.LogError(
$"kafka topic message [{keyName}] has been raised an exception of sending. the exception is: {ex.Message}");
$"An error occurred during sending the topic message to kafka. Topic:[{keyName}], Exception: {ex.Message}");

return Task.FromResult(OperateResult.Failed(ex));
}


正在加载...
取消
保存