Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add log for better trace #1844

Merged
merged 18 commits into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions zenoh-ext/src/advanced_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
Some(Err(e)) => bail!("Invalid key expression for queryable_suffix: {}", e),
};
tracing::debug!(
"Create AdvancedCache on {} with max_samples={:?}",
"Create AdvancedCache{{key_expr: {}, max_samples: {:?}}}",

Check warning on line 230 in zenoh-ext/src/advanced_cache.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_cache.rs#L230

Added line #L230 was not covered by tests
&key_expr,
conf.history,
);
Expand All @@ -241,6 +241,7 @@
.callback({
let cache = cache.clone();
move |query| {
tracing::trace!("AdvancedCache{{}} Handle query {}", query.selector());
let range = query
.parameters()
.get("_sn")
Expand Down Expand Up @@ -286,7 +287,14 @@
)
.wait()
{
tracing::warn!("Error replying to query: {}", e);
tracing::warn!("AdvancedCache{{}} Error replying to query: {}", e);

Check warning on line 290 in zenoh-ext/src/advanced_cache.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_cache.rs#L290

Added line #L290 was not covered by tests
} else {
tracing::trace!(
"AdvancedCache{{}} Replied to query {} with Sample{{info:{:?}, ts:{:?}}}",
query.selector(),
sample.source_info(),
sample.timestamp()

Check warning on line 296 in zenoh-ext/src/advanced_cache.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_cache.rs#L292-L296

Added lines #L292 - L296 were not covered by tests
);
}
}
} else {
Expand Down Expand Up @@ -318,13 +326,20 @@
)
.wait()
{
tracing::warn!("Error replying to query: {}", e);
tracing::warn!("AdvancedCache{{}} Error replying to query: {}", e);

Check warning on line 329 in zenoh-ext/src/advanced_cache.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_cache.rs#L329

Added line #L329 was not covered by tests
} else {
tracing::trace!(
"AdvancedCache{{}} Replied to query {} with Sample{{info:{:?}, ts:{:?}}}",
query.selector(),
sample.source_info(),
sample.timestamp()

Check warning on line 335 in zenoh-ext/src/advanced_cache.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_cache.rs#L332-L335

Added lines #L332 - L335 were not covered by tests
);
}
}
}
}
} else {
tracing::error!("Unable to take AdvancedPublisher cache read lock");
tracing::error!("AdvancedCache{{}} Unable to take AdvancedPublisher cache read lock");

Check warning on line 342 in zenoh-ext/src/advanced_cache.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_cache.rs#L342

Added line #L342 was not covered by tests
}
}
})
Expand Down Expand Up @@ -357,7 +372,7 @@
}
queue.push_back(sample);
} else {
tracing::error!("Unable to take AdvancedPublisher cache write lock");
tracing::error!("AdvancedCache{{}} Unable to take AdvancedPublisher cache write lock");

Check warning on line 375 in zenoh-ext/src/advanced_cache.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_cache.rs#L375

Added line #L375 was not covered by tests
}
}
}
29 changes: 26 additions & 3 deletions zenoh-ext/src/advanced_publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@
Some(meta) => Some(meta?),
None => None,
};
tracing::debug!("Create AdvancedPublisher{{key_expr: {}}}", &key_expr);

let publisher = conf
.session
Expand All @@ -323,7 +324,7 @@
};
let suffix = match meta {
Some(meta) => suffix / &meta,
// We need this empty chunk because af a routing matching bug
// We need this empty chunk because of a routing matching bug
_ => suffix / KE_EMPTY,
};

Expand Down Expand Up @@ -354,6 +355,11 @@
};

let token = if conf.liveliness {
tracing::debug!(
"AdvancedPublisher{{key_expr: {}}}: Declare liveliness token {}",
key_expr,
&key_expr / &suffix,

Check warning on line 361 in zenoh-ext/src/advanced_publisher.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_publisher.rs#L359-L361

Added lines #L359 - L361 were not covered by tests
);
Some(
conf.session
.liveliness()
Expand All @@ -368,6 +374,13 @@
conf.miss_config.as_ref().and_then(|c| c.state_publisher)
{
if let Some(seqnum) = seqnum.as_ref() {
tracing::debug!(
"AdvancedPublisher{{key_expr: {}}}: Enable {}heartbeat on {} with period {:?}",
key_expr,
if sporadic { "sporadic " } else { "" },
&key_expr / &suffix,

Check warning on line 381 in zenoh-ext/src/advanced_publisher.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_publisher.rs#L378-L381

Added lines #L378 - L381 were not covered by tests
period
);
let seqnum = seqnum.clone();
if !sporadic {
let publisher = conf.session.declare_publisher(&key_expr / &suffix).wait()?;
Expand Down Expand Up @@ -475,10 +488,16 @@
{
let mut builder = self.publisher.put(payload);
if let Some(seqnum) = &self.seqnum {
builder = builder.source_info(SourceInfo::new(
let info = SourceInfo::new(
Some(self.publisher.id()),
Some(seqnum.fetch_add(1, Ordering::Relaxed)),
));
);
tracing::trace!(
"AdvancedPublisher{{key_expr: {}}}: Put data with {:?}",
self.publisher.key_expr(),

Check warning on line 497 in zenoh-ext/src/advanced_publisher.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_publisher.rs#L496-L497

Added lines #L496 - L497 were not covered by tests
info
);
builder = builder.source_info(info);
}
if let Some(hlc) = self.publisher.session().hlc() {
builder = builder.timestamp(hlc.new_timestamp());
Expand Down Expand Up @@ -590,6 +609,10 @@
/// ```
#[zenoh_macros::unstable]
pub fn undeclare(self) -> impl Resolve<ZResult<()>> + 'a {
tracing::debug!(
"AdvancedPublisher{{key_expr: {}}}: : Undeclare",
self.key_expr()

Check warning on line 614 in zenoh-ext/src/advanced_publisher.rs

View check run for this annotation

Codecov / codecov/patch

zenoh-ext/src/advanced_publisher.rs#L613-L614

Added lines #L613 - L614 were not covered by tests
);
self.publisher.undeclare()
}
}
Expand Down
Loading