diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-03-26 14:25:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-26 12:25:58 +0000 |
commit | fe3cb8202f4332a547c15c1e9fb46eb2a5f7a470 (patch) | |
tree | 75e2d95334ab39a66e6c6cf4107f59136ab6dcbb /src-tauri/src/platform_specific | |
parent | 91c1dbb72943d00eefb5564ee85671f57a349709 (diff) | |
download | FlightCore-fe3cb8202f4332a547c15c1e9fb46eb2a5f7a470.tar.gz FlightCore-fe3cb8202f4332a547c15c1e9fb46eb2a5f7a470.zip |
refactor: Replace all `println!()` with log statements (#236)
* refactor: Replace all println with calls to logger
in `do_install()`
* refactor: Replace all println with calls to logger
in `verify_install_location()`
* refactor: Replace all println with calls to logger
in `get_northstar_release_notes()`
* refactor: Replace all println with calls to logger
in `update_northstar_caller()`
* refactor: Replace all println with calls to logger
in `install_northstar_caller()`
* refactor: Replace all println with calls to logger
in `apply_launcher_pr()`
* refactor: Replace all println with calls to logger
in `apply_mods_pr()`
* refactor: Replace all println with calls to logger
in `find_game_install_location()`
* refactor: Replace all println with calls to logger
in `install_mod_caller()`
* refactor: Replace all println with calls to logger
in `set_mod_enabled_status()`
* refactor: Replace all println with calls to logger
in `parse_installed_mods()`
* refactor: Replace all println with calls to logger
in `origin_install_location_detection()`
* refactor: Replace all println with calls to logger
in `query_thunderstore_packages_api()`
* refactor: Replace all println with calls to logger
in `add_batch_file()`
* refactor: Replace all println with calls to logger
in `extract()`
* refactor: Replace all println with calls to logger
in `check_is_northstar_outdated()`
Diffstat (limited to 'src-tauri/src/platform_specific')
-rw-r--r-- | src-tauri/src/platform_specific/windows.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-tauri/src/platform_specific/windows.rs b/src-tauri/src/platform_specific/windows.rs index 2862fde2..004beb6e 100644 --- a/src-tauri/src/platform_specific/windows.rs +++ b/src-tauri/src/platform_specific/windows.rs @@ -18,14 +18,14 @@ pub fn origin_install_location_detection() -> Result<String, anyhow::Error> { return Ok(game_path_str.to_string()); } Err(err) => { - println!("{}", err); + log::warn!("{}", err); continue; // Not a valid game path } } } } Err(err) => { - println!("Couldn't find {origin_id}: {err}") + log::warn!("Couldn't find {origin_id}: {err}") } } } |