Skip to content

Commit dea72ea

Browse files
committed
add print to debug
1 parent 5aad199 commit dea72ea

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmogony_builder"
3-
version = "0.12.5"
3+
version = "0.12.6"
44
authors = ["Adrien Matissart <[email protected]>", "Antoine Desbordes <[email protected]>"]
55
license = "Apache-2.0"
66
repository = "https://github.com/osm-without-borders/cosmogony"

cosmogony/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmogony"
3-
version = "0.12.5"
3+
version = "0.12.6"
44
authors = ["Adrien Matissart <[email protected]>", "Antoine Desbordes <[email protected]>"]
55
license = "Apache-2.0"
66
repository = "https://github.com/osm-without-borders/cosmogony"

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,14 +193,14 @@ pub fn create_ontology(
193193
type_zones(zones, stats, country_code, &inclusions)?;
194194

195195
build_hierarchy(zones, inclusions);
196-
println!("{:?}", zones);
197-
println!("aaaaaaaa");
196+
197+
println!("{:?}", zones.len());
198+
198199
if !disable_voronoi {
199200
compute_additional_cities(zones, parsed_pbf, ztree);
200201
}
201-
println!("bbbbbbb");
202+
202203
zones.iter_mut().for_each(|z| z.compute_names());
203-
println!("{:?}", zones);
204204

205205
compute_labels(zones, filter_langs);
206206

src/zone_ext.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ impl ZoneExt for Zone {
314314
} else {
315315
it.collect()
316316
};
317-
println!("{:?}", all_lang);
317+
318318
let international_labels = all_lang
319319
.iter()
320320
.map(|lang| {

0 commit comments

Comments
 (0)