Skip to content

Commit

Permalink
cli (logs): move compositions to trace
Browse files Browse the repository at this point in the history
  • Loading branch information
kartva committed Jan 31, 2024
1 parent 69702f9 commit 73b44f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/src/bin/librarian.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::time::{Duration, Instant};

use fastq2comp::extract_comp::{run, FASTQReader, SampleArgs};
use fastq2comp::io_utils;
use log::{error, info, warn, debug};
use log::{debug, error, info, trace, warn};
use server::{Plot, get_script_dir, serialize_comps_for_script, run_script, FileComp};
use simple_logger::SimpleLogger;

Expand Down Expand Up @@ -124,7 +124,7 @@ fn query(args: Cli) -> Result<(), ()> {
return Err(());
}

debug!("Compositions: {:#?}", comps);
trace!("Compositions: {:#?}", comps);

if args.local {
let mut working_dir = PathBuf::from(&args.output_dir);
Expand Down

0 comments on commit 73b44f2

Please sign in to comment.