summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/logr/const.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2023-08-05 20:43:19 +0200
committerGitHub <noreply@github.com>2023-08-05 20:43:19 +0200
commit56e7bd01ca09ad52b0c4f48f146a20a4f1b78696 (patch)
treeb1355645342667209263cbd355dc0b4254f1e8fe /vendor/github.com/mattermost/logr/const.go
parent9459495484d6e06a3d46de64fccd8d06f7ccc72c (diff)
downloadmatterbridge-msglm-master.tar.gz
matterbridge-msglm-master.tar.bz2
matterbridge-msglm-master.zip
Update dependencies and remove old matterclient lib (#2067)HEADmaster
Diffstat (limited to 'vendor/github.com/mattermost/logr/const.go')
-rw-r--r--vendor/github.com/mattermost/logr/const.go34
1 files changed, 0 insertions, 34 deletions
diff --git a/vendor/github.com/mattermost/logr/const.go b/vendor/github.com/mattermost/logr/const.go
deleted file mode 100644
index 704d0507..00000000
--- a/vendor/github.com/mattermost/logr/const.go
+++ /dev/null
@@ -1,34 +0,0 @@
-package logr
-
-import "time"
-
-// Defaults.
-const (
- // DefaultMaxQueueSize is the default maximum queue size for Logr instances.
- DefaultMaxQueueSize = 1000
-
- // DefaultMaxStackFrames is the default maximum max number of stack frames collected
- // when generating stack traces for logging.
- DefaultMaxStackFrames = 30
-
- // MaxLevelID is the maximum value of a level ID. Some level cache implementations will
- // allocate a cache of this size. Cannot exceed uint.
- MaxLevelID = 256
-
- // DefaultEnqueueTimeout is the default amount of time a log record can take to be queued.
- // This only applies to blocking enqueue which happen after `logr.OnQueueFull` is called
- // and returns false.
- DefaultEnqueueTimeout = time.Second * 30
-
- // DefaultShutdownTimeout is the default amount of time `logr.Shutdown` can execute before
- // timing out.
- DefaultShutdownTimeout = time.Second * 30
-
- // DefaultFlushTimeout is the default amount of time `logr.Flush` can execute before
- // timing out.
- DefaultFlushTimeout = time.Second * 30
-
- // DefaultMaxPooledBuffer is the maximum size a pooled buffer can be.
- // Buffers that grow beyond this size are garbage collected.
- DefaultMaxPooledBuffer = 1024 * 1024
-)