Browse Source

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

parazyd 3 years ago
parent
commit
cebb24549c
1 changed files with 1 additions and 1 deletions
  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() {
         let task = decrypt_task(task, salsa_box);
         if let Err(e) = task {
-            info!("unable to decrypt the task: {}", e);
+            debug!("unable to decrypt the task: {}", e);
             continue
         }