Skip to content

Commit

Permalink
Fix env_logger default filter
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielleHuisman committed Oct 9, 2024
1 parent a53ceb1 commit e6b3fb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/shadcn/src/bin/rust-shadcn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ struct DiffArgs {}

#[tokio::main]
async fn main() -> Result<()> {
env_logger::init();
env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("info")).init();

let cli = Cli::parse();

Expand Down
2 changes: 1 addition & 1 deletion scripts/src/bin/build_registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ fn build_themes(output_path: &Path) -> Result<()> {
}

fn main() -> Result<()> {
env_logger::init();
env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("info")).init();

let input_path = env::current_dir()?;
let output_path = env::current_dir()?.join("dist");
Expand Down

0 comments on commit e6b3fb1

Please sign in to comment.