Skip to content

Commit dbf869a

Browse files
committed
refactor: Minor polish.
1 parent e4d8281 commit dbf869a

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

bears/src/main.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
use std::str::FromStr;
2-
31
use bears::Action;
42
use bears_ecology::{History, Mode, init_queue, initial_load, trace_init};
5-
use bears_species::{BeaErr, Dataset, DeriveFromStr};
3+
use bears_species::{BeaErr, Dataset};
64
use clap::Parser;
75
// use indicatif::ProgressBar;
8-
use tracing::{info, trace};
96

107
#[derive(Parser)]
118
#[command(author, version, about, long_about = None)]
@@ -22,7 +19,7 @@ struct Cli {
2219
async fn main() -> Result<(), BeaErr> {
2320
trace_init()?;
2421
dotenvy::dotenv().ok();
25-
trace!("Environmental variables loaded.");
22+
tracing::trace!("Environmental variables loaded.");
2623

2724
// let url = EnvError::from_env("BEA_URL")?;
2825
// let url = UrlParseError::into_url(&url)?;

0 commit comments

Comments
 (0)