Skip to content

Commit 9e08507

Browse files
committed
fix: remove useless printlns
1 parent ebf2c03 commit 9e08507

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/wasm/src/meta.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,17 +108,13 @@ pub fn get_navigation_data_install_status(task: Rc<RefCell<Task>>) {
108108
InstallStatus::None
109109
};
110110

111-
println!("opening json");
112-
113111
// Open JSON
114112
let json_path = match status {
115113
InstallStatus::Manual => Some(PathBuf::from(consts::NAVIGATION_DATA_DOWNLOADED_LOCATION).join("cycle.json")),
116114
InstallStatus::Bundled => Some(PathBuf::from(consts::NAVIGATION_DATA_DEFAULT_LOCATION).join("cycle.json")),
117115
InstallStatus::None => None,
118116
};
119117

120-
println!("json_path: {:#?}", json_path);
121-
122118
let installed_cycle_info = match json_path {
123119
Some(json_path) => {
124120
let json_file = match std::fs::File::open(json_path) {

0 commit comments

Comments
 (0)