Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2024-05-22 21:19:41 +00:00
parent a2948c6707
commit 36ab26efd2
174 changed files with 1627 additions and 637 deletions

View File

@ -112,4 +112,6 @@ Rails.application.configure do
end
config.middleware.insert_before(ActionDispatch::Cookies, Gitlab::Middleware::StripCookies, paths: [%r{^/assets/}])
config.log_level = Gitlab::Utils.to_rails_log_level(ENV["GITLAB_LOG_LEVEL"], :debug)
end

View File

@ -39,7 +39,7 @@ Rails.application.configure do
# Include generic and useful information about system operation, but avoid logging too much
# information to avoid inadvertent exposure of personally identifiable information (PII).
# Note: This configuration does not affect the log level of `Gitlab::Logger` and its subclasses.
config.log_level = :info
config.log_level = Gitlab::Utils.to_rails_log_level(ENV["GITLAB_LOG_LEVEL"], :info)
# Suppress 'Rendered template ...' messages in the log
# source: http://stackoverflow.com/a/16369363