mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-14 16:51:18 +10:00
chore: General cleanup
- Changed some info!() statements to debug!() and warn!() - Removed most Turbofish syntax cases - Removed InvalidCodeError and replaced it with InvalidResponse Signed-off-by: quexeky <git@quexeky.dev>
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
use log::info;
|
||||
use log::{debug, info};
|
||||
use tauri::AppHandle;
|
||||
|
||||
#[tauri::command]
|
||||
@ -7,7 +7,7 @@ pub fn quit(app: tauri::AppHandle) {
|
||||
}
|
||||
|
||||
pub fn cleanup_and_exit(app: &AppHandle) {
|
||||
info!("exiting drop application...");
|
||||
debug!("Cleaning up and exiting application");
|
||||
|
||||
app.exit(0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user