Просмотр исходного кода

bin: Fix debug targets for cashierd and darkfid.

parazyd 4 лет назад
Родитель
Сommit
1e6fd06c3b
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      src/bin/cashierd.rs
  2. 1 1
      src/bin/darkfid.rs

+ 1 - 1
src/bin/cashierd.rs

@@ -751,7 +751,7 @@ async fn main() -> Result<()> {
     let get_address_flag = args.is_present("ADDRESS");
 
     let nthreads = num_cpus::get();
-    debug!(target: "GATEWAY DAEMON", "Run {} executor threads", nthreads);
+    debug!(target: "CASHIER DAEMON", "Run {} executor threads", nthreads);
 
     let (_, result) = Parallel::new()
         .each(0..nthreads, |_| {

+ 1 - 1
src/bin/darkfid.rs

@@ -612,7 +612,7 @@ async fn main() -> Result<()> {
     let ex2 = ex.clone();
 
     let nthreads = num_cpus::get();
-    debug!(target: "GATEWAY DAEMON", "Run {} executor threads", nthreads);
+    debug!(target: "DARKFI DAEMON", "Run {} executor threads", nthreads);
 
     let (_, result) = Parallel::new()
         .each(0..nthreads, |_| {