Fixed typo

This commit is contained in:
Pavel Pivovarov
2019-07-10 00:19:30 +00:00
parent 05e08fc39b
commit 49755a4c88

View File

@@ -21,12 +21,11 @@ module Snibox
class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 5.1
#config.web_console.whitelisted_ips = '0.0.0.0/0'
# SQLite3 fix
config.active_record.sqlite3.represent_boolean_as_integer = true
# Loggin to STDOUT for Docker
# Logging to STDOUT for Docker
logger = ActiveSupport::Logger.new(STDOUT)
logger.formatter = config.log_formatter
config.logger = ActiveSupport::TaggedLogging.new(logger)
@@ -38,4 +37,4 @@ module Snibox
# -- all .rb files in that directory are automatically loaded after loading
# the framework and any gems in your application.
end
end
end