Removed dead code

This commit is contained in:
Connor Yoh 2025-07-15 19:57:54 +01:00
parent 7b77cdf61a
commit 39ca9f47d8

View File

@ -87,9 +87,4 @@ pub fn get_logs() -> Vec<String> {
#[tauri::command]
pub async fn get_tauri_logs() -> Result<Vec<String>, String> {
Ok(get_logs())
}
// Get log file path for external access
pub fn get_log_file_path() -> PathBuf {
get_log_directory().join("tauri-backend.log")
}
}