Kuangye Chen

Results 1 issues of Kuangye Chen

Here's my code ``` let builder = Pulsar::builder(pulsar_url.clone(), TokioExecutor); let mut producer = builder .build() .await? .producer() .with_topic(topic.clone()) .with_name(name.clone()) .build() .await?; ``` And I set log level to info. ```...