Răsfoiți Sursa

bin: Fix debug targets for cashierd and darkfid.

parazyd 4 ani în urmă
părinte
comite
1e6fd06c3b
2 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  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 get_address_flag = args.is_present("ADDRESS");
 
 
     let nthreads = num_cpus::get();
     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()
     let (_, result) = Parallel::new()
         .each(0..nthreads, |_| {
         .each(0..nthreads, |_| {

+ 1 - 1
src/bin/darkfid.rs

@@ -612,7 +612,7 @@ async fn main() -> Result<()> {
     let ex2 = ex.clone();
     let ex2 = ex.clone();
 
 
     let nthreads = num_cpus::get();
     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()
     let (_, result) = Parallel::new()
         .each(0..nthreads, |_| {
         .each(0..nthreads, |_| {