Skip to content

Commit 980321c

Browse files
committed
commands/describe: Log command span
1 parent 8ec35e2 commit 980321c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/commands/describe.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
use std::io;
22

3+
use tracing::info;
4+
35
use crate::{
46
cli::DescribeArgs,
57
fastq::{self, Record},
68
};
79

810
pub fn describe(args: DescribeArgs) -> io::Result<()> {
11+
info!(command = "describe", "fq");
12+
913
let mut reader = fastq::open(args.src)?;
1014
let mut record = Record::default();
1115

@@ -17,6 +21,8 @@ pub fn describe(args: DescribeArgs) -> io::Result<()> {
1721

1822
print_metrics(&metrics);
1923

24+
info!("done");
25+
2026
Ok(())
2127
}
2228

0 commit comments

Comments
 (0)