Skip to content

Commit

Permalink
chore: add extra logging info
Browse files Browse the repository at this point in the history
  • Loading branch information
pepperoni505 committed Oct 28, 2024
1 parent 662dc69 commit 08a273a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wasm/src/download/downloader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ impl NavigationDataDownloader {
fn report_error(&self, message: String) {
let borrowed_task = self.task.borrow();
if (*borrowed_task).is_none() {
println!("[NAVIGRAPH] Task is none");
println!("[NAVIGRAPH] Task is none, but an error has been raised: {}", message);
return;
}
let mut borrowed_task = borrowed_task.as_ref().unwrap().borrow_mut();
Expand Down

0 comments on commit 08a273a

Please sign in to comment.