Browse Source

for dark theme

main
pvincent 12 months ago
parent
commit
3c75f9569f
  1. 2
      README.md
  2. 2
      app/controllers/welcome_controller.rb
  3. 2
      app/views/welcome/index.html.erb

2
README.md

@ -5,4 +5,4 @@
* [x] Rails version 7
* [x] LXD aware (through remote ssh)
* [x] Rufo Formatter
* [ ] Semantic Logging
* [x] Semantic Logging (efficient for dark theme)

2
app/controllers/welcome_controller.rb

@ -16,7 +16,7 @@ class WelcomeController < ApplicationController
# logger.debug("Hello World")
# end
logger.info("efficient logging in practice works better on dark theme")
logger.info("efficient logging for dark theme")
# raise "exception"
# end
end

2
app/views/welcome/index.html.erb

@ -1,5 +1,5 @@
<h1>Welcome Aboard</h1>
<ul>
<li>Rails 7</li>
<li>Efficient Logging in dark theme</li>
<li>Efficient Logging for dark theme</li>
</ul>
Loading…
Cancel
Save