Skip to content

Commit

Permalink
fix: remove useless printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
pepperoni505 committed Apr 26, 2024
1 parent ebf2c03 commit 9e08507
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/wasm/src/meta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,17 +108,13 @@ pub fn get_navigation_data_install_status(task: Rc<RefCell<Task>>) {
InstallStatus::None
};

println!("opening json");

// Open JSON
let json_path = match status {
InstallStatus::Manual => Some(PathBuf::from(consts::NAVIGATION_DATA_DOWNLOADED_LOCATION).join("cycle.json")),
InstallStatus::Bundled => Some(PathBuf::from(consts::NAVIGATION_DATA_DEFAULT_LOCATION).join("cycle.json")),
InstallStatus::None => None,
};

println!("json_path: {:#?}", json_path);

let installed_cycle_info = match json_path {
Some(json_path) => {
let json_file = match std::fs::File::open(json_path) {
Expand Down

0 comments on commit 9e08507

Please sign in to comment.