diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-06-01 13:49:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-01 13:49:16 +0200 |
commit | 11326cd645e6205469e1d12a244999ad0557105c (patch) | |
tree | dcde54db86652c4e38efe525c1b4c780b0dffae8 /src-tauri | |
parent | 7321b431b21e07b5dfa75fe4db07185ccbf0a5c6 (diff) | |
download | FlightCore-11326cd645e6205469e1d12a244999ad0557105c.tar.gz FlightCore-11326cd645e6205469e1d12a244999ad0557105c.zip |
feat: Log folder names when indexing mods (#373)
Diffstat (limited to 'src-tauri')
-rw-r--r-- | src-tauri/src/mod_management/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src-tauri/src/mod_management/mod.rs b/src-tauri/src/mod_management/mod.rs index c6374623..a52c6980 100644 --- a/src-tauri/src/mod_management/mod.rs +++ b/src-tauri/src/mod_management/mod.rs @@ -216,7 +216,9 @@ fn parse_installed_mods(game_install: &GameInstall) -> Result<Vec<NorthstarMod>, // Get list of folders in `mods` directory for path in paths { + log::info!("{path:?}"); let my_path = path.unwrap().path(); + log::info!("{my_path:?}"); let md = std::fs::metadata(my_path.clone()).unwrap(); if md.is_dir() { |