Explorar el Código

modify error log content.

master
Savorboard hace 7 años
padre
commit
bf2a874103
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/DotNetCore.CAP.Kafka/PublishQueueExecutor.cs

+ 1
- 1
src/DotNetCore.CAP.Kafka/PublishQueueExecutor.cs Ver fichero

@@ -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));
}


Cargando…
Cancelar
Guardar