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
{{ message }}
This repository was archived by the owner on Jun 16, 2026. It is now read-only.
问题
lib/src/rbt_infra/rbt_log.rs第 29 行注释写文件日志按小时自动滚动,但代码中FileBuilder未调用.rollover_hourly()。当前实际行为:每次启动按当前时间戳创建新文件(如
log/2026/06/08/17:13:31),进程跨小时后不会自动换文件。FileBuilder默认是Rotation::Never。修法
"auto_aim")+.rollover_hourly(),文件自动滚动命名为auto_aim.2026-06-08-17位置
lib/src/rbt_infra/rbt_log.rs:29—FileBuilder::new(directory_name, file_name)调用处