I would like to view some variables in controller, it tried the following:
Rails.logger.debug "Year: #{Time.now.year}"
puts "Year: #{Time.now.year}, Month: #{@month}"
where can I see the output for Logger or Puts in production mode? Do I need so set something up to view these somewhere?