Properly using Log4r in Ruby Application

Posted by Spencer on Stack Overflow See other posts from Stack Overflow or by Spencer
Published on 2010-03-18T19:42:50Z Indexed on 2010/03/18 21:01 UTC
Read the original article Hit count: 369

Filed under:
|
|

I must really be missing something obvious, but I'm having trouble with general use of Log4r in my Ruby application. I am able to log without issue, but the overhead seems clunky the way I have it setup. I'm basically passing the full path to a filename to log in each class in my application. The ruby script that is called pulls the log file from one of the arguments in ARGV which is then passed around and set in each class that I call in ruby. In each class I use the patternFormatter to insert the class/file name into the log statement.

Is there a better way to make this work? It feels like no matter what I think of will require something to be passed to each class in my ruby application. I could set the log file in a yaml configuration file instead, but then I would be passing around the configuration file to each class as well.

Any advice? If this doesn't make sense I could try and post some more specific code samples to further explain what I mean.

Thanks!

© Stack Overflow or respective owner

Related posts about log4r

Related posts about ruby