Hello,
I have a project that masks the base function "cat" with my own function "log":
cat <- function(...) {
log(...)
}
On one machine that works fine. On another machine (same R version, same - because shared via renv - library) I get
Error in log(...) : unused argument (file = scratchFile)
Googling for "R scratchFile" doesn't show any useful results. So I do not know where "scratchFile" is coming from.
Has anyone an idea what the problem could be?