Skip to content

Commit

Permalink
Use env_logger
Browse files Browse the repository at this point in the history
  • Loading branch information
hayatoito committed Oct 24, 2024
1 parent d883cbe commit 98f979a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 44 deletions.
58 changes: 16 additions & 42 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ version = "0.8.0"
[dependencies]
anyhow = "1.0.86"
clap = { version = "4", features = ["derive"] }
env_logger = "0.11.5"
glob = "0.3.1"
log = "0.4.22"
minijinja = { version = "2.1.1", features = ["loader"] }
pretty_env_logger = "0.5.0"
pulldown-cmark = "0.11.0"
rayon = "1.10.0"
regex = "1.10.5"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ enum Command {

fn main() -> Result<()> {
let opt = Cli::parse();
pretty_env_logger::init();
env_logger::init();
match opt.cmd {
Command::Build {
config,
Expand Down

0 comments on commit 98f979a

Please sign in to comment.