Skip to content

Commit

Permalink
Update lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludea authored Dec 19, 2022
1 parent 595fcef commit 893484b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#[cfg(target_os = "android")]
/*#[cfg(target_os = "android")]
fn init_logging() {
android_logger::init_once(
android_logger::Config::default()
Expand All @@ -10,11 +10,11 @@ fn init_logging() {
#[cfg(not(target_os = "android"))]
fn init_logging() {
env_logger::init();
}
}*/

#[tauri::mobile_entry_point]
fn main() {
init_logging();
//init_logging();
tauri::Builder::default()
.run(tauri::generate_context!())
.expect("error while running tauri application");
Expand Down

0 comments on commit 893484b

Please sign in to comment.