I\'m author of the logging package on CRAN, I don\'t see myself as an R programmer, so I tried to make it as code-compatible with the Python standard logging package as I co
Why would you repeat the name? It would be more convenient to pass the log-object directly to the function, ie
logdebug("test",logger=l) # or logdebug("test",l)
A bit the way one would use connections in a number of functions. That seems more the R way of doing it I guess.