Displaying 1 result from an estimated 1 matches for "loggingthreshold".
2013 Jun 25
1
Perplexed with environment
Hi
I migrated from Linux to Mac, but I don't this has anything to do with
it, but I am not sure.
I am writing a small logger package, in which I have a file
aaa.R:
,----
| .logData <- new.env()
| assign("loggingThreshold", 10, envir = .logData)
| assign("logToFile", FALSE, envir = .logData)
| assign("logFileName", NULL, envir = .logData)
|
| assign("logToConsole", TRUE, envir = .logData)
| ##
| assign("logHeaderLevel", 0, envir = .logData)
| assign("log...