-
Notifications
You must be signed in to change notification settings - Fork 5
Remove log4r dependency (replace with base R logging) #141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,6 @@ Depends: | |
| R (>= 4.0) | ||
| Imports: | ||
| data.table, | ||
| log4r, | ||
| methods, | ||
| checkmate, | ||
| utils, | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: Vitek-Lab/MSstatsConvert
Length of output: 207
🏁 Script executed:
Repository: Vitek-Lab/MSstatsConvert
Length of output: 11381
Log file is truncated on every write when
append = FALSE. InR/utils_logging.R:29-35, the closure passesappend = appendtocat()for every message, so an existing file gets reopened in truncate mode on each log call and only the last entry survives. Truncate once when the appender is created, then always write withappend = TRUE.🤖 Prompt for AI Agents