We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ea607a commit 68879a6Copy full SHA for 68879a6
src/sync/server.rs
@@ -416,7 +416,7 @@ impl Server {
416
let (res_tx, res_rx): (MessageSender, MessageReceiver) = channel();
417
let handler = thread::spawn(move || {
418
for r in res_rx.iter() {
419
- info!("response thread get {:?}", r);
+ trace!("response thread get {:?}", r);
420
if let Err(e) = write_message(fd, r.0, r.1) {
421
info!("write_message got {:?}", e);
422
quit_res.store(true, Ordering::SeqCst);
0 commit comments