fix(gitignore): correct log/ pattern to only match root directory #2

Merged
zhangxiang merged 1 commits from fix/gitignore-file into dev 2026-04-21 19:55:31 +08:00

1 Commits

Author SHA1 Message Date
张翔 2312f50010 fix(gitignore): correct log/ pattern to only match root directory
The previous `log/` pattern was too broad and matched any directory
named 'log' anywhere in the path, causing Java source files in
`handler/log/` directories to be incorrectly ignored.

Changed to `/log/` to only match the log directory at project root.

Added previously ignored files:
- OperationLogHandler.java
- SysLogHandler.java
- OperationLogHandlerTest.java
- SysLogHandlerTest.java
2026-04-21 19:51:35 +08:00