Skip to content

Commit 081eec1

Browse files
committed
fix: tracing
1 parent 27a9096 commit 081eec1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rust/patchable/src/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,7 @@ fn main() -> Result<()> {
447447
tracing::info!(?base, "resolving base commit-ish");
448448
let base_commit = repo::resolve_and_fetch_commitish(&product_repo, &base, &upstream)
449449
.context(FetchBaseCommitSnafu)?;
450+
tracing::info!(?base, base.commit = ?base_commit, "resolved base commit");
450451

451452
if let Some(mirror_url) = config.mirror {
452453
// Add mirror remote
@@ -498,8 +499,6 @@ fn main() -> Result<()> {
498499
tracing::info!("successfully pushed base ref to mirror");
499500
};
500501

501-
tracing::info!(?base, base.commit = ?base_commit, "resolved base commit");
502-
503502
tracing::info!("saving version-level configuration");
504503
let config = ProductVersionConfig { base: base_commit };
505504
let config_path = ctx.version_config_path();

0 commit comments

Comments
 (0)