You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[improvement] Enforce English grammar standards in FE and BE logs
Issue Number: close #xxx
Problem Summary:
1. Standardized FE and BE logging grammar based on AGENTS.md rules ('Start [verb]ing', 'Begin to [verb]', 'Finished [verb]ing').
2. Reduced massive log spam in fs_file_cache_storage.cpp.
3. Corrected misspellings (e.g. 'destoried', 'envorinment', 'founded', 'can not' -> 'cannot') and capitalized key info logs according to community standards.
None
- Test: Manual test
- Behavior changed: No
- Does this need documentation: No
LOG_INFO("begin delete_expired_stale_rowset for tablet={}", tablet_id());
496
+
LOG_INFO("Begin to delete_expired_stale_rowset for tablet={}", tablet_id());
497
497
}
498
498
std::vector<RowsetSharedPtr> expired_rowsets;
499
499
// ATTN: trick, Use stale_rowsets to temporarily increase the reference count of the rowset shared pointer in _stale_rs_version_map so that in the recycle_cached_data function, it checks if the reference count is 2.
0 commit comments