Skip to content

Commit

Permalink
去掉错误的日志
Browse files Browse the repository at this point in the history
  • Loading branch information
ipconfiger committed Mar 14, 2024
1 parent 4acf0bf commit 34f91f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ fn worker_body(thread_id: usize, rx: Receiver<RowEvents>, mapping: &mut TableMet
}
let mut message = DmlMessage::from_dml(current_data, &mut meta);
let json_str = message.format_json(&mut meta);
info!("will sent:\n{}", &json_str);
//info!("will sent:\n{}", &json_str);
if ports.len() > 0 {
for (mq_name, topic) in ports {
let msg_qu = QueueMessage { topic, payload: json_str.clone(), pos };
Expand Down

0 comments on commit 34f91f7

Please sign in to comment.