Skip to content

Commit

Permalink
fix(rome_service): removing println about config file (rome#3052)
Browse files Browse the repository at this point in the history
  • Loading branch information
xunilrj authored and IWANABETHATGUY committed Aug 22, 2022
1 parent ada08f8 commit cbe0477
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/rome_service/src/configuration/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ pub fn load_config(
file_system: &DynRef<dyn FileSystem>,
) -> Result<Option<Configuration>, RomeError> {
let config_name = file_system.config_name();
println!("Config: {:?}", config_name);
let configuration_path = PathBuf::from(config_name);
let options = OpenOptions::default().read(true).write(true);
let file = file_system.open_with_options(&configuration_path, options);
Expand Down

0 comments on commit cbe0477

Please sign in to comment.