Skip to content

Commit

Permalink
chore: install tracing and error hook for chisel
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Dec 21, 2023
1 parent 1978a03 commit f9e7a9d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions crates/chisel/bin/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ use chisel::{
};
use clap::Parser;
use eyre::Context;
use foundry_cli::{
opts::CoreBuildArgs,
utils::{self, LoadConfig},
};
use foundry_cli::{handler, opts::CoreBuildArgs, utils::{self, LoadConfig}};
use foundry_common::{evm::EvmArgs, fs};
use foundry_config::{
figment::{
Expand Down Expand Up @@ -82,6 +79,8 @@ pub enum ChiselParserSub {

#[tokio::main]
async fn main() -> eyre::Result<()> {
handler::install()?;
utils::subscriber();
#[cfg(windows)]
if !Paint::enable_windows_ascii() {
Paint::disable()
Expand Down

0 comments on commit f9e7a9d

Please sign in to comment.