Added custom log.
This commit is contained in:
parent
9392b5a21c
commit
977acf0a52
1 changed files with 5 additions and 1 deletions
|
@ -14,7 +14,7 @@ class ApplicationController < ActionController::Base
|
||||||
:mode_show_rendeder,
|
:mode_show_rendeder,
|
||||||
:model_index_render
|
:model_index_render
|
||||||
|
|
||||||
before_filter :set_user, :session_update
|
before_filter :log_request, :set_user, :session_update
|
||||||
before_filter :cors_preflight_check
|
before_filter :cors_preflight_check
|
||||||
|
|
||||||
after_filter :set_access_control_headers
|
after_filter :set_access_control_headers
|
||||||
|
@ -52,6 +52,10 @@ class ApplicationController < ActionController::Base
|
||||||
Observer::Ticket::Notification.transaction
|
Observer::Ticket::Notification.transaction
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def log_request
|
||||||
|
puts Time.now().to_s + ' ' + request.original_fullpath.to_s
|
||||||
|
end
|
||||||
|
|
||||||
# Finds the User with the ID stored in the session with the key
|
# Finds the User with the ID stored in the session with the key
|
||||||
# :current_user_id This is a common way to handle user login in
|
# :current_user_id This is a common way to handle user login in
|
||||||
# a Rails application; logging in sets the session value and
|
# a Rails application; logging in sets the session value and
|
||||||
|
|
Loading…
Reference in a new issue