Skip to content

Commit

Permalink
remove pretty_env_logger
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed May 12, 2024
1 parent ccb582a commit c5fad2f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
clap = { version = "4.4.6", features = ["derive"] }
env_logger = { version = "0.11.3", features = ["color"] }
lazy_static = "1.4.0"
pretty_env_logger = "0.5.0"
rookie = { path = "../rookie-rs" }
serde_json = "1.0.107"
2 changes: 1 addition & 1 deletion cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fn print_version() {

fn main() -> Result<(), Box<dyn std::error::Error>> {
let args = Args::parse();
pretty_env_logger::init();
env_logger::init();

if args.version {
print_version();
Expand Down
2 changes: 1 addition & 1 deletion examples/rust/logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pretty_env_logger = "0.5.0"
env_logger = { version = "0.11.3", features = ["color"] }
rookie = { path = "../../../rookie-rs" }
2 changes: 1 addition & 1 deletion examples/rust/logging/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fn main() {
pretty_env_logger::init();
env_logger::init();
let cookies = rookie::brave(None).unwrap();
println!("Found {} cookies", cookies.len());
}

0 comments on commit c5fad2f

Please sign in to comment.