Skip to content

Commit 185c19c

Browse files
fix typo in production initializer generator
And put "info" in quotes.
1 parent 949b4d1 commit 185c19c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

actionmailbox/test/dummy/config/environments/production.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# Prepend all log lines with the following tags.
6060
config.log_tags = [ :request_id ]
6161

62-
# Info include generic and useful information about system operation, but avoids logging too much
62+
# "info" includes generic and useful information about system operation, but avoids logging too much
6363
# information to avoid inadvertent exposure of personally identifiable information (PII). Use "debug"
6464
# for everything.
6565
config.log_level = ENV.fetch("RAILS_LOG_LEVEL") { "info" }

actiontext/test/dummy/config/environments/production.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# Prepend all log lines with the following tags.
6060
config.log_tags = [ :request_id ]
6161

62-
# Info include generic and useful information about system operation, but avoids logging too much
62+
# "info" includes generic and useful information about system operation, but avoids logging too much
6363
# information to avoid inadvertent exposure of personally identifiable information (PII). Use "debug"
6464
# for everything.
6565
config.log_level = ENV.fetch("RAILS_LOG_LEVEL") { "info" }

activestorage/test/dummy/config/environments/production.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# Prepend all log lines with the following tags.
6060
config.log_tags = [ :request_id ]
6161

62-
# Info include generic and useful information about system operation, but avoids logging too much
62+
# "info" includes generic and useful information about system operation, but avoids logging too much
6363
# information to avoid inadvertent exposure of personally identifiable information (PII). Use "debug"
6464
# for everything.
6565
config.log_level = ENV.fetch("RAILS_LOG_LEVEL") { "info" }

railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Rails.application.configure do
6767
# Prepend all log lines with the following tags.
6868
config.log_tags = [ :request_id ]
6969

70-
# Info include generic and useful information about system operation, but avoids logging too much
70+
# "info" includes generic and useful information about system operation, but avoids logging too much
7171
# information to avoid inadvertent exposure of personally identifiable information (PII). If you
7272
# want to log everything, set the level to "debug".
7373
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")

0 commit comments

Comments
 (0)