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:46 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-08-03 00:30:06 +0300
commitf8be3ab1ff947a0a6e080a9af0c5b97274963436 (patch)
treeb8ab4a1a2c3d4be870ab6a4107d3be794eb6d296 /lib
parent35a9ba2148ce4cb992e6f69e8797891d507ecbd5 (diff)
Add latest changes from gitlab-org/security/gitlab@14-1-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