public async Task SendAsync(Message message) { var topic = message.Header.Topic; Logger.Value.Debug( $"MsSqlMessageProducer: send async message with topic {topic} and id {message.Id.ToString()}"); await _sqlQ.SendAsync(message, topic); }
public async Task SendAsync(Message message) { var topic = message.Header.Topic; s_logger.LogDebug( "MsSqlMessageProducer: send async message with topic {Topic} and id {Id}", topic, message.Id.ToString()); await _sqlQ.SendAsync(message, topic); }