Skip to content

Commit 4e891fc

Browse files
committed
chore: remove dbg and downgrade some logs
This cause unexpected prints at runtime
1 parent afaaba1 commit 4e891fc

File tree

5 files changed

+5
-72
lines changed

5 files changed

+5
-72
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

Cargo.lock

Lines changed: 1 addition & 1 deletion
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 = "xcodeproj"
3-
version = "0.2.11"
3+
version = "0.2.12"
44
edition = "2021"
55
description = "xcodeproj reader and parser."
66
license = "MIT OR Apache-2.0"

src/pbxproj/object/build/list.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ impl<'a> XCConfigurationList<'a> {
4848
sdkroots.dedup();
4949

5050
if sdkroots.is_empty() {
51-
tracing::info!(
51+
tracing::trace!(
5252
"no sdkroot found in build_configuration_list: {:?}",
5353
self.id
5454
);
@@ -59,7 +59,7 @@ impl<'a> XCConfigurationList<'a> {
5959
self.build_configurations
6060
.iter()
6161
.flat_map(|b| Some(b.base_configuration.as_ref()?.id.as_str()))
62-
.flat_map(|id| objects.get_build_configurations_by_base_id(dbg!(id)))
62+
.flat_map(|id| objects.get_build_configurations_by_base_id(id))
6363
.flat_map(|b| b.build_settings.get_string("SDKROOT"))
6464
.for_each(|root| sdkroots.push(root));
6565

src/pbxproj/object/target.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,7 @@ impl<'a> PBXTarget<'a> {
8383
return PBXTargetPlatform::from_sdk_root(sdkroot.as_str());
8484
}
8585

86-
tracing::warn!(
87-
"No build configuration list for {:?}, platfrom is not identified",
88-
self.name
89-
);
86+
tracing::debug!("Using default for {:?}", self.name);
9087
Default::default()
9188
}
9289
}

0 commit comments

Comments
 (0)