don't print the asset path on desktop (#2748)

This commit is contained in:
Evan Almloff 2024-07-30 22:31:03 +02:00 committed by GitHub
parent 33f3d40a49
commit df8c7e1872
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -122,7 +122,6 @@ fn resolve_resource(path: &Path) -> PathBuf {
if !base_path.exists() {
let workspace_root = get_workspace_root_from_cargo();
let asset_path = workspace_root.join(path);
println!("ASSET PATH: {:?}", asset_path);
return asset_path;
}
} else {