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:
quexeky
2025-01-06 20:04:34 +11:00
parent 50f37fd022
commit 182361e598
10 changed files with 47 additions and 55 deletions

View File

@ -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);
}