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

1 year ago
1 year ago
  1. class MainController < ApplicationController
  2. def home
  3. logger.info "efficient logging for dark theme"
  4. end
  5. def about
  6. logger.debug "some debugging info"
  7. logger.info "relevant information"
  8. logger.info "multiline\nline2\nline3"
  9. logger.warn "a warning"
  10. # logger.error "an error"
  11. # raise "this is an error"
  12. # sleep 3
  13. end
  14. end