up vote 0 down vote favorite
share [g+] share [fb]

Anyone now why I can't see logs for workling in workling.output or production.log?

In development the logs show up in the development.log.

In my environments/production.rb I have the log levl set to debug. config.log_level = :debug

I'm starting Starling and Workling like this

server > /usr/bin/starling -d -P /tmp/pids/starling.pid -L /mnt/app/current/log/starling.log -p 15151

local > cap deploy:restart

server > RAILS_ENV=production /mnt/app/current/script/workling_client start
link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

The log level is different. The Default level for development mode is logger.debug, this shows basically everything. In production I think it's logger.info, this is the actions called, time taken and errors only.

link|improve this answer
feedback

If everything else is working ok, my guess would be that it's a permissions issue where the scripts don't have sufficient rights to write out the production log.

link|improve this answer
feedback

Actually the problem comes from the buffering that is being done by the system. The logs are not flushed right away to production.log.

You need to flush the logger to get your logs appear right away in production.log:

logger.info "Something informative here" logger.flush

I hope it helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.