bin: Fix debug targets for cashierd and darkfid.

This commit is contained in:
parazyd
2021-10-19 09:58:04 +02:00
parent c97f30f4dc
commit 1e6fd06c3b
2 changed files with 2 additions and 2 deletions

View File

@@ -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, |_| {

View File

@@ -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, |_| {