You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
313 B
15 lines
313 B
class MainController < ApplicationController
|
|
def home
|
|
logger.info "efficient logging for dark theme"
|
|
end
|
|
|
|
def about
|
|
logger.debug "some debugging info"
|
|
logger.info "line1\nline2\nline3"
|
|
logger.warn "a warning"
|
|
logger.error "an error"
|
|
|
|
# raise "this is an error"
|
|
sleep 3
|
|
end
|
|
end
|