Remove function names from logging calls in src/schedule, src/math, src/init, and src/idc #4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This patch removes function names from the beginning of logging messages in the target directories as part of code cleanup efforts. Function names in log messages are redundant since modern logging systems and debuggers can provide this information automatically.
Changes Made
Pattern 1: Complete function name removal
Pattern 2: Function name prefix removal while preserving message
Scope
src/schedule/,src/math/,src/init/,src/idc/tr_info(),tr_dbg(),tr_err(),tr_warn(),LOG_INF(),LOG_DBG(),LOG_ERR(),LOG_WRN(), and component-specific variantsValidation
checkpatch.plvalidation with no new errorsFiles Modified
src/schedule/dma_multi_chan_domain.csrc/schedule/dma_single_chan_domain.csrc/schedule/ll_schedule.csrc/schedule/schedule.csrc/schedule/zephyr_dma_domain.csrc/schedule/zephyr_domain.csrc/schedule/zephyr_dp_schedule.csrc/schedule/zephyr_ll.csrc/schedule/zephyr_twb_schedule.csrc/math/power.csrc/idc/idc.cThis cleanup improves code consistency and removes redundant information from log messages while maintaining all essential debugging information.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.