Преглед изворни кода

taud: Inform about undecryptable tasks only in the debug loglevel.

parazyd пре 3 година
родитељ
комит
cebb24549c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      bin/tau/taud/src/main.rs

+ 1 - 1
bin/tau/taud/src/main.rs

@@ -194,7 +194,7 @@ async fn on_receive_task(
     for (workspace, salsa_box) in workspaces.iter() {
     for (workspace, salsa_box) in workspaces.iter() {
         let task = decrypt_task(task, salsa_box);
         let task = decrypt_task(task, salsa_box);
         if let Err(e) = task {
         if let Err(e) = task {
-            info!("unable to decrypt the task: {}", e);
+            debug!("unable to decrypt the task: {}", e);
             continue
             continue
         }
         }