Tagged Questions
The log4r tag has no wiki summary.
4
votes
3answers
395 views
Is Ruby's stdlib Logger class thread-safe?
In short, is the standard library Logger class in Ruby thread-safe? Only useful info Google turned up was someone on a forum saying it "seems" thread-safe. And I don't feel like spending time testing ...
3
votes
3answers
277 views
Ruby: Uninitialized constant Log4r::DEBUG (NameError) problem
While using log4r in Ruby, I wrote a configuration file similar to the following:
require 'rubygems'
require 'log4r'
require 'log4r/outputter/datefileoutputter'
SERVICE_LOG = {
:log_name ...
3
votes
1answer
990 views
How to configure Log4r with Rails 3.0.x?
I tried configuring log4r with Rails 3.0.4 based on this article: http://www.dansketcher.com/2007/06/16/integrating-log4r-and-ruby-on-rails/
...
2
votes
2answers
2k views
Properly using Log4r in Ruby Application
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 ...
2
votes
2answers
1k views
syslog output for log4r example
Can some one post an example of using syslog outputter for log4r, I am currently using stdout but want to log to syslog.
mylog = Logger.new 'mylog'
mylog.outputters = Outputter.stdout
mylog.info ...
1
vote
2answers
1k views
Log4r : logger inheritance, yaml configuration, alternatives?
I'm pretty new to ruby environments and I was looking for a nice logging framework to use it my ruby and rails applications.
In my previous experiences I have successfully used log4j and log4p (the ...
0
votes
1answer
30 views
Ruby on Rails - Using LogServer for Remote Logging in log4r using ROMP
I am a complete newbie in working with a Ruby on Rails (RoR) application. I am trying to set up a LogServer and tried running the example available on github : ...
0
votes
0answers
42 views
Override logging in thin
I am starting thin in a cluster with 4 thin instances(with Sinatra).
It seems that thin creates 4 different log files, one for each
instance. I want to override this logging behavior. My ...
0
votes
1answer
27 views
setup 2 log files with log4r
I have added log4r in my rails 2.3.8 project, Actually I want to create 2 log files.
For application login (INFO messages) (application.log)
Error messages (any message other than info message) ...
0
votes
1answer
75 views
Use Log4r as logger in Sinatra App
I want to use log4r with log-levels info, warn and error in a Sinatra 1.3.1 app. The output should go to requests.log (http requests), error.log and sinatra.log (other outputs).
How do I go about ...
0
votes
1answer
74 views
Log4r and Chainsaw: gathering additional log message details (line number, etc.)?
I'm using Log4r's Log4j XML formatter to talk to Chainsaw as described here in Log4r's manual. However, basically all I'm getting is the message and warning level -- I'm not getting the additional ...
0
votes
2answers
437 views
What is the best Rails Logging Gem
what is the best way of configuring Logging features on a rails project? I'm looking for something like Log4J which is available to Rails. I have found log4r and it's conflicting built in Logger ...
0
votes
1answer
250 views
Contextual Logging with Log4r
Here's how some of my existing logging code with Log4r is working. As you can see in the WorkerX::a_method, any time that I log a message I want the class name and the calling method to be included ...
0
votes
1answer
163 views
Log4r - include class name in log output
I'd like to include the name of the class that invokes the logger in the log output, such as:
[MyClass] here is the message
I've seen the option of using the Contexts but I don't want to have to do ...