Skip to content

Commit 1a95f7c

Browse files
committed
change print place
1 parent aa1205a commit 1a95f7c

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
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.3"
3+
version = "0.12.4"
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.3"
3+
version = "0.12.4"
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/zone_ext.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl ZoneExt for Zone {
8686
.unwrap_or_else(|| "".to_string());
8787

8888
let international_names = get_international_names(tags, name);
89-
println!("{:?}", international_names);
89+
9090
Some(Self {
9191
id: index,
9292
osm_id: osm_id_str,
@@ -315,7 +315,7 @@ impl ZoneExt for Zone {
315315
} else {
316316
it.collect()
317317
};
318-
318+
println!("{:?}", all_lang);
319319
let international_labels = all_lang
320320
.iter()
321321
.map(|lang| {
@@ -326,6 +326,7 @@ impl ZoneExt for Zone {
326326
})
327327
.collect();
328328

329+
println!("{:?}", international_labels);
329330
self.international_labels = international_labels;
330331
self.label = label;
331332
}

0 commit comments

Comments
 (0)