Tagged Questions
4
votes
1answer
40 views
Logging in Rails, is there any performance hit?
Rails comes bundled with Ruby's logger class in the standard library. The available log levels are: :debug, :info, :warn, :error, and :fatal.
I was wondering if I add extensive logging in my Rails ...
0
votes
0answers
21 views
How to log ruby mechanize post request?
I have a code
@agent = Mechanize.new do |a|
a.log = Logger.new(File.open("logs/parser.log", "w")),
a.ssl_version,
a.verify_mode = 'SSLv3',
OpenSSL::SSL::VERIFY_NONE,
a.user_agent_alias ...
0
votes
1answer
37 views
ruby: unable to use logger with rspec
I am trying to add logging to a simple rspec test. I am using Watir to drive Chrome within the spec and this works fine. I am unable to get logs using the "Logger" library.
This is my spec:
require ...
0
votes
2answers
30 views
Is there a way to stop rails logging everything?
I don't want it to log incoming IPs, I don't want it to log any internal happenings.
I just want Rails to process the requests as they come in and that's that.
Is this possible to do?
How can I ...
1
vote
1answer
32 views
Send errors to another log - Ruby on rails
I wanted to know if I can send all the errors that happend while my app is in 'production' environment to a new 'log' instead of sending ALL the actions to the 'production.log' send it to ...
1
vote
1answer
32 views
Removing color decorations from strings before writing them to logfile
I use the ruby logger like this:
$logger = Logger.new MultiIO.new($stdout, log_file)
Where the MultiIO is a class I got from this answer. This works great, mostly, but I am using 'colored' rubygem ...
0
votes
1answer
26 views
Logging in to the Redis(Puts should go to redis)
I want a functionality to log my all "puts" to go to redis at the same time to STDOUT as well.
class Job
def self.perform
puts "Abc"
end
end
Then I am expecting a key value pair in redis. ...
2
votes
0answers
20 views
Custom log not being written to
Rails has deprecated log.auto_flushing in 3.2. Using file.sync is the recommended solution.
I have a custom logger file set up by an initializer and subscribe to active support notifications that log ...
1
vote
2answers
47 views
In Ruby can one put the File and Line Number into the Logger.formatter?
I want an output format like:
/some/path/to/the/source/file(999) : the message to be logged
0
votes
1answer
37 views
how to make a generic path for a log file in Ruby
Here I am creating the logs folder under the current path of the directory using Dir::pwd. But I want to change this to pick the directory path from config files which will run in any other machines.
...
0
votes
1answer
43 views
Ruby Nested Hashes - Determining separate events
I have many unique events in XML that I have converted into a large Hash of around 300 keys. The values of most of these keys are Hashes and again, the value of some of those keys are Hashes again. I ...
1
vote
1answer
42 views
How to specify the Ruby version for a Heroku worker (eg. sidekiq)?
I am running sidekiq as a Heroku worker as shown in the following Procfile:
worker: bundle exec sidekiq -c 5 -v
I would like for it run on Ruby 1.9.3 instead of 1.9.1 as shown when running heroku ...
0
votes
1answer
57 views
PostgreSQL Error on Heroku with “BETWEEN”
I am expierencing a strange problem on Heroku. I seems that in only accesses the Hosting Enviroment and not the Database.
I have created a little Test App, after expirencing a Problem to track it ...
0
votes
1answer
82 views
How to log everything on the screen to a file?
I use one rb file with rufus/scheduler on Windows. The script is executed on a comupter start up and it runs in a cmd window.
How can I log everything that ruby outputs to the screen to a file? I ...
0
votes
1answer
62 views
Filtering sensitive information with Sinatra and Rack Logger
I maintain a Sinatra app that acts as a JSON API service. The API is consumed by another web app, as well as a mobile app.
What I'd like to do is have the Rack::CommonLogger exclude sensitive ...
0
votes
2answers
34 views
Honeybadger hook on Rails.logger
I'd like to notify Honeybadger anytime I call Rails.logger, and have a ton of existing Rais.logger calls throughout my app.
Is there anyway to create a hook that is called each time ...
1
vote
1answer
55 views
Logging in a gem that is used both inside and outside rails
What's a proper approach to this: I've got a gem that can be used both with or without rails - if it is used within rails, I'd like to re-use rails-services e.g. the configured logger. If it is ...
0
votes
1answer
142 views
Cucumber / Savon omit or remove logging output
While running a cucumber test I am getting (in addition to the test results) a lot of debug/log related output in the form:
D, [2013-03-06T12:21:38.911829 #49031] DEBUG -- : SOAP request:
D, ...
1
vote
2answers
103 views
How to create a folder (if not present) with Logger.new?
I'm trying to register a new log
@@my_logger ||= Logger.new("#{Rails.root}/log/my.log")
but when I try to generate new folders , to put it inside
@@my_logger ||= ...
0
votes
1answer
24 views
Ruby Logger acting weird and logging informations to diff
I'm using ruby logger with my project, I have conf.rb which is something like :
require 'rubygems'
# initiate the logger file
$LOG = Logger.new("#{$ROOT_PATH}/log/errors.log", 'daily')
...
1
vote
0answers
47 views
Sum of “DB” and “View” time is sometimes greater than “Completion” time in Rails logs. Why?
After running some performance tests against a local copy of one of my Rails apps, this line appeared in the logs:
Completed in 32ms (View: 1, DB: 1143) | 200 OK ...
0
votes
1answer
91 views
How to access logger from model in Sinatra?
The following works within the context of a request:
get '/' do
logger.info 'got /'
...
But within a model,
class Foo
def bar
logger.info 'bar'
...
Sinatra throws error: NameError: ...
2
votes
2answers
99 views
Making Rails.logger tee writes to stdout
My Rails.logger works nicely, thank you very much, but I would also like it to write to STDOUT (that is, not to give up logging to logfiles, but to "Tee" it to stdout).
Is this possible in Rails 3?
2
votes
1answer
94 views
Creating only one log every day using Ruby standard Logger
I'm using ruby standard logger, I want rotational daily one, so in my code I have :
Logger.new("#{$ROOT_PATH}/log/errors.log", 'daily')
It is working perfectly, but it created two files ...
0
votes
2answers
65 views
Recover Redmine data from production log
I had a project in Redmine with more than 600 issues. I moved all the issues to a different project. I had no idea that the move deletes all the data for the custom fields!
So all the custom field ...
3
votes
1answer
154 views
Ruby: Logger and Daemons
i'm using ruby 1.9.2p180 (2011-02-18 revision 30909)
in Order to do the logging i use the logging gem.
My program has two blocks, which are used as daemons.
But logging from these blocks results in ...
0
votes
1answer
343 views
Different log level for Sidekiq workers - Ruby approach?
I have a running environment with a Rails application, Sidekiq and clockwork mod for scheduling purposes.
I have many different workers, filled with logger.debug and logger.info instructions, and I ...
2
votes
1answer
143 views
Logging in delayed_job?
I can't get any log output from delayed_job, and I'm not sure my jobs are starting.
Here's my Procfile:
web: bundle exec rails server
worker: bundle exec rake jobs:work
worker: bundle exec ...
0
votes
1answer
43 views
Ruby logger - when to close logfile
Any suggestions when to open and close "Logger" device. I have a main program calling multiple subs via Open4.
Should I start a single logger for main and all subs and close when main finishes.
Or ...
3
votes
1answer
120 views
How do I access Sinatra's Logger outside the Request Scope
It seems that Sinatra's logger is only available inside request handlers (See https://github.com/sinatra/sinatra#logging), but what if I want to use a logger in other places, for example in helper ...
1
vote
1answer
97 views
Rails solution to record every single user action that can be queried later
I'm looking for a solution that does the following in general:
Logs every single user action. If possible, in form of controller name, action, and the parameters
Also, records what was actually ...
0
votes
2answers
23 views
Ruby : any way to install Rails.logger for CLI apps?
I have some Ruby code that I am testing stand alone before integrating into a Rails app. Because the final app. is in Rails I have numerous calls to Rails.logging.xxx that I want in there, but with ...
0
votes
2answers
82 views
How can I always log the IP with logger? [duplicate]
Possible Duplicate:
Get client’s IP address in Sinatra?
I'm using Sinatra with Apache and Passenger.
I'm currently using the following logger in my config.ru:
LOGGER = ...
2
votes
0answers
153 views
tail with grep remote log files
I have this code to tail remote log files:
def do_tail( session, file )
session.open_channel do |channel|
channel.on_data do |ch, data|
puts "[#{file}] -> #{data}"
...
1
vote
1answer
287 views
How to format ruby logger
How do you format the ruby logger so that it is outputting a nice line instead of a messy line
0
votes
1answer
78 views
How do I stop script/runner email filter from logging STDIN?
I have a method in a model which processes an incoming bounced email. In cPanel, I have an email account forwarder called eblast-bounce@mydomain.com which is set to pipe to a program with the line
...
2
votes
2answers
128 views
How to filter password-field in the logger of Sinatra?
If I send the parameters of a form such as 'password', in Sinatra's logs I can see:
{"api_session":"da1123f8c5edd2d3b7c8b43a4e93b7c2","password":"12323"}
How can I hide the password using ...
0
votes
0answers
56 views
delayed_job_config.rb undefined method with log ration rails 3.2.8
I use rails 3.2.8 and I need make log rotation on development and production env:
I have added to development.rb and production.rb the next for log rotation:
config.logger = ...
1
vote
1answer
51 views
creative Ruby-way to evaluate string to one of class constants
As you may know Logger:Application has constants (Logger::DEBUG, Logger::WARN etc...)
My log level is a string in my config. Passing that string to my logger gives error. I'll have to override the ...
0
votes
1answer
59 views
Heroku Rails app error log interpretation
I am trying to get my app onto heroku however I keep getting errors. I was told to look into the logs to see what the problem is.
Would anyone be able to tell me the errors by looking at the logs ?
...
3
votes
1answer
117 views
Can Ruby's stdlib Logger class safely handle writers from multiple proceses?
I'm working on a Ruby library that needs to do logging. Ideally, I'd like multiple worker processes to be able to log into the same file. Looking at the source for the Logger class from Ruby's ...
0
votes
1answer
56 views
Logging Closures and non Sinatra classes
I am new to Ruby and Sinatra and trying to access logger object inside closures (EM.run do .. end).
Here is extracts from working code where logging statements with messagge "LOGGER IS NOT ACCESSIBLE ...
3
votes
2answers
101 views
Ruby Object name to string
I have a strange need that I can't find a good solution to.
I've got a method that I will pass either an object, hash, or array to. And I want to be able to get the name of that object, hash, or ...
3
votes
1answer
110 views
Prepend user ID to all log messages in Rails
In order to help track user actions for debugging purposes, we are considering prepending the session's logged in user ID to every log message (when applicable). Our stack consists of Rails and ...
0
votes
1answer
30 views
How do I view the IP addresses for requests in the Heroku logs?
Is there a way to see the IP address for http requests in Heroku logs? I have used the command line interface 'heroku log --app {app name} but can't find an option to see ip addresses.
1
vote
1answer
58 views
Force sequel to log queries to the same destination as sinatra
I want initialize Sequel in my Sinatra app with
DB = Sequel.sqlite '...', :loggers => [SomeLogger]
and I want Sequel to log to the same destination as Sinatra. But it seems like Sinatra logger ...
2
votes
1answer
104 views
What is the “right” way to log while running in Sinatra's application scope?
I am playing around with writing a Sinatra app. I'd like to log something from the configuration blocks. However, that runs in the application scope, which doesn't include the logger methods if I do ...
0
votes
1answer
2k views
Getting timestamp of event from file name in logstash
We have a process that writes events to a file, without a timestamp. The file names themselves are suffixed with a timestamp, which is the timestamp that should be used for all the events in the ...
3
votes
1answer
194 views
Getting current line of code in Ruby
Crazy thought today.
Is there any way to grab the line number that code has been executed on?
Logger.info "I was run on line #{get_line_number}"
0
votes
0answers
65 views
Setting up Rake with Jenkins?
How can I report to Jenkins on individual task or steps of a rake-file?
I want as much info as possible about each sub task.
