-
Notifications
You must be signed in to change notification settings - Fork 657
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
chore(autoware_pointcloud_preprocessor): change unnecessary warning message to debug #8525
chore(autoware_pointcloud_preprocessor): change unnecessary warning message to debug #8525
Conversation
Signed-off-by: vividf <[email protected]>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vividf Thank you. I believe this should ideally be issued as a warning, so could you explain why it was categorized as debug information instead? The root cause should be addressed as a warning, but by downgrading it to debug, there’s a risk of missing the underlying issue.
That said, if this process has little to no impact on the system’s operation and doesn’t require correction, then treating it as debug information is acceptable.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8525 +/- ##
==========================================
- Coverage 24.06% 23.68% -0.38%
==========================================
Files 1397 1406 +9
Lines 102639 102355 -284
Branches 39035 39099 +64
==========================================
- Hits 24697 24244 -453
- Misses 75465 75601 +136
- Partials 2477 2510 +33
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@yukkysaito if condition is true Since almost all of the pointcloud will satisfy the if condition and this has no impact on system operation, I don't think a warning is a good logging message |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
…essage to debug (backport autowarefoundation#8525) (#1488) Co-authored-by: Yi-Hsiang Fang (Vivid) <[email protected]>
…essage to debug (autowarefoundation#8525) (#1590) Co-authored-by: Yi-Hsiang Fang (Vivid) <[email protected]>
Description
This PR provides a quick fix for changing unnecessary warning messages to debug to reduce the console log.
This PR #8300 fixes the issue but will take time to review.
According to TIER4_INTERNAL_LINK
[component_container_mt-1] [WARN 1724036039.656393647] [sensing.lidar.concatenate_data] computeTransformToAdjustForOldTimestamp(): "old_stamp is newer than new_stamp," at (/home/autoware/pilot-auto/src/autoware/universe/sensing/pointcloud_preprocessor/src/concatenate_data/concatenate_and_time_sync_nodelet.cpp:L255)
Warning messages keep showing up due to the algorithm design.
Current algorithm:
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.