mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
10 lines
219 B
Ruby
10 lines
219 B
Ruby
class UsersController < ActionController::Base
|
|
def index
|
|
logger.info "some info"
|
|
logger.warn "a warning"
|
|
logger.debug request.params
|
|
l = logger
|
|
l.info "more info"
|
|
end
|
|
end
|