Sha256: c8494d4ec26119d6f9befdc2758b193dd0402ffa3ada7773e3601b83b9550524

Contents?: true

Size: 394 Bytes

Versions: 7

Compression:

Stored size: 394 Bytes

Contents

class ApplicationController < ActionController::Base
  protect_from_forgery

  # Initialize AB Panel
  initialize_ab_panel!

  after_filter :ab_env_logger

  def ab_env_logger
    Rails.logger.info "Start AB Panel Log output ====================="
    Rails.logger.info session
    Rails.logger.info AbPanel.env
    Rails.logger.info "End of AB Panel Log output ===================="
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ab_panel-0.0.9 example/app/controllers/application_controller.rb
ab_panel-0.0.8 example/app/controllers/application_controller.rb
ab_panel-0.0.7 example/app/controllers/application_controller.rb
ab_panel-0.0.6 example/app/controllers/application_controller.rb
ab_panel-0.0.5 example/app/controllers/application_controller.rb
ab_panel-0.0.4 example/app/controllers/application_controller.rb
ab_panel-0.0.3 example/app/controllers/application_controller.rb