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
This commit was merged in pull request #3.
This commit is contained in:
+1
-1
@@ -91,7 +91,7 @@ $RECYCLE.BIN/
|
||||
# Logs
|
||||
logs/
|
||||
*.log
|
||||
log/
|
||||
/log/
|
||||
|
||||
# Testing
|
||||
coverage/
|
||||
|
||||
Reference in New Issue
Block a user