Unable to log to STDOUT from Ruby/Rails when running under LiteSpeed
I have the following code in my Rails app:
require 'logger'
QGV_LOGGER = Logger.new(STDOUT)
QGV_LOGGER.info "Logging engaged in #{RAILS_ENV} Rails environment"
This runs fine when run using WEBrick, however, when run using LS 2.2.4, I get a "Broken Pipe" error.
Does LS deny me access to STDOUT in Rails?
Dirk
|