Skip to content

Commit

Permalink
refactor: drop raw stats from verbose logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehsiao committed Oct 27, 2022
1 parent c628b07 commit 267a28f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use std::str::FromStr;
use anyhow::{bail, Result};
use clap::Parser;
use clap_verbosity_flag::{Verbosity, WarnLevel};
use log::info;
use rayon::prelude::*;
use tabled::{object::Columns, Alignment, Modify, Style, Table, Tabled};

Expand Down Expand Up @@ -79,10 +78,6 @@ fn main() -> Result<()> {
"git log -F --author={author} --pretty=tformat: --numstat {rev_range}"
)
.read()?;
info!(
"author: {}, commits: {}, raw_stats: {}",
author, commits, raw_stats
);
let mut insertions = 0;
let mut deletions = 0;
let mut num_files = 0;
Expand Down

0 comments on commit 267a28f

Please sign in to comment.