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.
 
 
 
 
 

18 lines
362 B

class MainController < ApplicationController
def home
logger.info "efficient logging for dark theme"
end
def about
logger.debug "some debugging info"
logger.info "relevant information"
logger.info "multiline\nline2\nline3"
logger.warn "a warning"
# logger.error "an error"
# raise "this is an error"
# sleep 3
end
end