Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-08-03 00:29:13 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-08-03 00:29:25 +0300
commit42a3f91387d2e1e8914b76817a8be34f67d9b84c (patch)
tree443217bc7643f4c32b4daf76ebc86ce46fb36807 /lib
parentf4fbe9d60f1591a4900c9df5434bc41f86afb36b (diff)
Add latest changes from gitlab-org/security/gitlab@13-12-stable-ee
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/omniauth_logging/json_formatter.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/gitlab/omniauth_logging/json_formatter.rb b/lib/gitlab/omniauth_logging/json_formatter.rb
deleted file mode 100644
index cdd4da31803..00000000000
--- a/lib/gitlab/omniauth_logging/json_formatter.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-require 'json'
-
-module Gitlab
- module OmniauthLogging
- class JSONFormatter
- def call(severity, datetime, progname, msg)
- { severity: severity, timestamp: datetime.utc.iso8601(3), pid: $$, progname: progname, message: msg }.to_json << "\n"
- end
- end
- end
-end