How to debug default updater #5282
-
I'm running in to a problem with the default updater, so it show me correctly that there is an update and i do see it's downloading a large file on my network but after the download stops it shows me nothing (also I see no popup for download progress not sure if that is supposed to happen or not). I have seen you can implement your own updater but I rather stick with the provided one, but how do you debug or at least have some errors popup? Thank you in advanced! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
If Rust is an option, you could print the RunEvent::Updater events in the Otherwise you can listen to the |
Beta Was this translation helpful? Give feedback.
If Rust is an option, you could print the RunEvent::Updater events in the
run
method.Otherwise you can listen to the
"tauri://update-status"
event in javascript, but you need to trigger the update manually after that by emitting the"tauri://update"
event after registering the listener, because the default auto updater runs too early.