diff --git a/crates/libs/tagger/src/tagger/location.rs b/crates/libs/tagger/src/tagger/location.rs index 24ff145c5..f87041248 100644 --- a/crates/libs/tagger/src/tagger/location.rs +++ b/crates/libs/tagger/src/tagger/location.rs @@ -82,6 +82,8 @@ pub static CITY_TAGGER: Lazy = Lazy::new(|| { pub static CITY_DISTRICT_TAGGER: Lazy = Lazy::new(|| { let assets = ASSETS_PATH.get_or_init(|| PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("assets")); + println!("LES ASSETS"); + println!("{:?}", assets); let path = assets.join("cities_districts.json"); let locations = fs::read(path).expect("city district data"); let locations: CitiesDistricts =