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

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus/ctxlogrus/noop.go')
-rw-r--r--vendor/github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus/ctxlogrus/noop.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/vendor/github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus/ctxlogrus/noop.go b/vendor/github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus/ctxlogrus/noop.go
deleted file mode 100644
index 7fcc0f64..00000000
--- a/vendor/github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus/ctxlogrus/noop.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package ctxlogrus
-
-import (
- "io/ioutil"
-
- "github.com/sirupsen/logrus"
-)
-
-var (
- nullLogger = &logrus.Logger{
- Out: ioutil.Discard,
- Formatter: new(logrus.TextFormatter),
- Hooks: make(logrus.LevelHooks),
- Level: logrus.PanicLevel,
- }
-)